C语言输入汉字并输出

#include

main()

{

 char str[50];//字数可以改,50我随便写的

 gets(str);

 puts(str);

 getchar();

 

}

你可能感兴趣的:(c语言)