我新学vc++,请教一个简单的问题?
我在vc中写的第一个程序:#include <iostream.h>
int main()
{
cout << "this is a sample c++ program.";
return 0;
}
但是当我编译时,出现错误:
Text2.c
D:\Text2.c(4) : error C2065: 'cout' : undeclared identifier
D:\Text2.c(4) : error C2297: '<<' : illegal, right operand has type 'char [30]'
执行 cl.exe 时出错.
Text2.obj - 1 error(s), 0 warning(s)
不知道为什么啊?
cout 不是在#include <iostream.h>中吗?