stdio文件函数详解(19)
发布时间:2021-06-07
发布时间:2021-06-07
stdio文件常用函数
{
int i;
printf("Input an integer: ");
if (fscanf(stdin,"%d",&i))
printf("The integer read was: %i",i);
else
{
fprintf(stderr,"Error reading an integer from stdin.");
exit(1);
}
return 0;
}
@函数名称: scanf
函数原型: int scanf(char * format,args,...);
函数功能: 从标准输入设备按format指向的格式字符串规定的格式,输入数据给agrs所指向的单元
函数返回: 读入并赋给args的数据个数.遇文件结束返回EOF,出错返回0
参数说明: args-指针
所属文件: <stdio.h>
int main()
{
int a,b,c;
上一篇:第三章 网络危机的应对策略