a是多个字符和空格时,fscanf (fp,"%d",&a)调用之后,fp指针位置跳过空格吗?
比如
fp内容:"how are you";
fscanf (fp,"%d",&a);
fscanf (fp,"%d",&b);
a输出how
b输出are吗?
为什么第二次调用fscanf自动跳过空格?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Whitespace character: the function will read and ignore any whitespace characters encountered before the next non-whitespace character (whitespace characters include spaces, newline and tab characters -- see isspace). A single whitespace in the format string validates any quantity of whitespace characters extracted from the stream (including none).
http://www.cplusplus.com/refe...