《C++ Primer》第四版中到底是哪种版本的C++,VC++6.0呢?
我看过这样几种C++(两个hello world的程序):#include <iostream.h>
int main() {
cout << "hello world" <<endl;
return 0;
}
#include <iostream>
int main() {
std::cout << "hello world" <<std::endl;
return 0;
}
这好像是两个不同的C++标准,在VC++6.0中都可以实现,我想问他们是哪种标准,VC++6又是哪种C++标准???