标签:c语言
编程题:函数gets()与scanf()的区别。
#include<stdio.h>
void main()
{char str1[20],str2[20];
gets(str1);
scanf("%s",str2);
printf("str1:%s\n",str1);
printf("str2:%s\n",str2);
}
本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413804
编程题:函数gets()与scanf()的区别。,布布扣,bubuko.com
标签:c语言
原文地址:http://c10086.blog.51cto.com/6433044/1413804