Questions tagged «turbo-c++»


3
为什么简单的“ Hello World”风格的程序不能用Turbo C ++编译?
我已经开始为编程课学习C ++。我已经下载了这个“ Hello World”程序: #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } 但是Turbo C ++抱怨: Error D:\HELLO.CPP 1: Unable to open include file 'IOSTREAM' Error D:\HELLO.CPP 2: Declaration syntax error Error D:\HELLO.CPP 6: Undefined symbol 'cout' 这个非常简单的程序有什么问题?我该如何纠正这些错误?
101 c++  turbo-c++  c++-faq 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.