从文件中读取整数
我有一个代码应该从文件中读取一个整数。但它实际上是作为一个角色来阅读的。建议我进行一些修改,以便我可以将整数读入数组。
fptr =fopen("path","r");
while(1)
{
c=getc(fptr);
putchar(c);
if (c==EOF)
exit(1);
}
预先感
谢阿米特
I have a code which suppose to read an integer from a file. But its actually reading as an character. Suggest me some modification where I can read the integers into an array.
fptr =fopen("path","r");
while(1)
{
c=getc(fptr);
putchar(c);
if (c==EOF)
exit(1);
}
Thanks in advance
Amit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像这样使用
fscanf
:You can use
fscanf
like this :