如何在C中以某种方式从文件中获取输入
假设数据的方式是 123 134 2312 32131 2131231 211212
应该将它们视为不同的数字并将它们存储在整数数组中。
The way being suppose the data is
123 134 2312 32131 2131231 211212
It should take them as different numbers and store them in an integer array .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
fscanf
与%d
格式说明符一起使用,从文本文件中读取连续的整数值。You can use
fscanf
with%d
format specifier to read successive integer values from a text file.