open-watcom-c-win32-1.7a 不支持C++吗
好不容易在网上找到个支持 win的 watcom :open-watcom-c-win32-1.7a我使用测试代码
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
getchar();
return 0;
} 能正常的编译运行,可是使用
#include <iostream>
#include <string>
int main()
{
std::string s = "Hello, World!\n";
std::cout << s;
return 0;
}却连编译也不能通过
难道 他不支持 C++ 吗 ?