c语言-C语言scanf返回值问题——CSDN问答频道
printf("scanf the minute:"); while(scanf("%d",&time)!=EOF){ changetime(time); printf("scanf the minute:return 0; } void changetime(int time){ printf("this is: %d hour %d minute\n...
scanf的返回值的问题验证??? - C语言论坛 - 编程论坛
雾雨淼淼 来自:甘肃金昌 等级:论坛游民 帖子:85 专家分:89 结帖率: 100% # include <stdio.h> void main() { int m; char c; float f; printf("请输入整形数据\n"); if(scanf("%d...
问一个scanf返回值的问题_C语言开发教程_积木群组
【话题】问一个scanf返回值的问题 61 次char p1[10]; char p2[10]; scanf("%s,%s", p1, p2); /*这个scanf的返回值是多少?*/ scanf("%s %s", p1, p2); /*这个scanf的返回值又是...