标签: c string input scanf
我正在编写一个非常简单的代码,输入将如下:
打印字符串
char str[20]; int TC=0; scanf("%d",&TC); //get number of strings while(TC!=0){ //read all the strings and print fgets(str,19,stdin); printf("%s\n",str); TC--; }
代码从用户而不是N获取N-1个输入字符串。