这个小程序错误在那啊?#include<iostream.h>#include<string.h>int main(){string str="hello"cout<<str;return 0;}编译的时候说string没被定义啊。然后用#include<cstring.h>的时候编译器显示不能找到头文件。我用的是VC++6.0
#include<string>using namespace std;
还有就是在String str="hello"后面加上分号.