const char *str = "hello"//使用字符串指针
const char str[] = "hello"//使用字符数组
3、如果保存的字符串,需要修改。一般使用字符数组。
例如:
char path[256] = "c:\\windows\\"
strcat(path, "system32")
errno_tfopen_s(
FILE**
pFile,
const
char
*filename,
const
char
*mode
)
FILE
*
fopen(const
char
*
path,
const
char
*
mode)
不多说了
(还是补充吧,errno你应该知道是啥吧,
errno.h里面的东西)
你应该判断fp是否为NULL
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)