怎么将任意输入的一句话存放在字符数组中?c语言

2024-11-23 10:03:48
推荐回答(1个)
回答1:

#include
int main()

{
char c[10000];

scanf("%s",&c[0]);

return 0;

}