system("hello") 要注意什么了!!
#include<cstdlib>using namespace std;
int main()
{
system("hello");
}
报错:
error C2871: 'std' : does not exist or is not a namespace
warning C4508: 'main' : function should return a value; 'void' return type assumed