This question already has answers here:
'printf' vs. 'cout' in C++

(16个回答)


已关闭6年。



#include<stdio.h>
int main ()
{
    // code
}
return 0 ;
#include<iostream>
int main ()
{
    // code
}

最好使用哪个库?

什么是最好的,为什么?当我编写代码时,它们之间的功能有什么区别?

最佳答案

stdio.h是C标准库中的头文件。用于输入/输出
iostream是C++中的输入输出类

因此,如果您使用的是C++,则只需使用#include <iostream>

关于c++ - stdio.h和iostream有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28764438/

10-13 06:58