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

2024年11月23日 10:03
有1个网友回答
网友(1):

#include
int main()

{
char c[10000];

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

return 0;

}