首页上一页 1 下一页尾页 1 条记录 1/1页
remove()函数要包含的头文件是什么?
发表在C语言图书答疑
2012-07-25
是否精华
是
否
版块置顶:
是
否
remove()的函数头文件为stdio.h或io.h
在io.h中:
_CRTIMP __checkReturn int __cdecl remove(__in_z const char * _Filename);
在stdio.h中
_CRTIMP __checkReturn int __cdecl remove(__in_z const char * _Filename);
在《Visual C++开发技术大全》中,第47页中说,调用remove()函数前,需要引入iomanip,为什么在
iomanip中找不到remove()函数,也可以使用呢?这种写法符合学习的习惯吗?
在io.h中:
_CRTIMP __checkReturn int __cdecl remove(__in_z const char * _Filename);
在stdio.h中
_CRTIMP __checkReturn int __cdecl remove(__in_z const char * _Filename);
在《Visual C++开发技术大全》中,第47页中说,调用remove()函数前,需要引入iomanip,为什么在
iomanip中找不到remove()函数,也可以使用呢?这种写法符合学习的习惯吗?