#include <stdio.h> void main() { char ch[20]; scanf("%s",ch); printf("\n%s",ch); }
为什么ch变量里的字符串值不能含有空格?如果我需要含有空格该怎么办啊!是不是就不能用scanf()格式来输出了啊,而是用gets()函数来输出啊.