本文主要是介绍记录 | 编译报错 error: ‘fopen_s‘ was not declared in this scope,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
编译报错:
error: ‘fopen_s‘ was not declared in this scope
解决办法:
不同操作系统对于函数的定义、名称以及参数有所不同,需要在文件前加入代码:
#ifdef __unix
#define fopen_s(pFile,filename,mode) ((*(pFile))=fopen((filename), (mode)))==NULL
#endif
这篇关于记录 | 编译报错 error: ‘fopen_s‘ was not declared in this scope的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!