对于一些拥有 xxx.h 形式的 C 标准库头文件,C++ 标准库同时包含同名的头文件和拥有形式cxxx的头文件,尽量使用C++标准库头文件代替C 标准库头文件。
#include <cstdio>
int main()
{
printf("hello wolrd!\n");
std::printf("hello wolrd!\n");
return 0;
}
对于一些拥有 xxx.h 形式的 C 标准库头文件,C++ 标准库同时包含同名的头文件和拥有形式cxxx的头文件,尽量使用C++标准库头文件代替C 标准库头文件。
#include <cstdio>
int main()
{
printf("hello wolrd!\n");
std::printf("hello wolrd!\n");
return 0;
}