fscanf使用心得

依然范特西╮ 提交于 2019-11-29 12:32:55

  好久没碰C语言了。从现在开始,要开始刷题了。

(1)int fscanf( FILE* stream, const char* format, ... );

 

https://www.programiz.com/cpp-programming/library-function/cstdio/fscanf

 

(2) strlen(). 头文件<string.h>

char c[]={'p','r','\0'}

strlen(c)为2,'\0'将不被包括。

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!