首页 > 代码库 > 编程题:函数gets()与scanf()的区别。

编程题:函数gets()与scanf()的区别。

编程题:函数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);

}

编程题:函数gets()与scanf()的区别。 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413804