10 points (and a cookie) to whoever tells me why this code generates
these errors:
C:\Programming\ Microsoft Visual Studio\MyProjec ts\HelloWorld\m ain.c(5)
: error C2065: 'cout' : undeclared identifier
C:\Programming\ Microsoft Visual Studio\MyProjec ts\HelloWorld\m ain.c(5)
: error C2297: '<<' : illegal, right operand has type 'char [2]'
#include <iostream.h>
int main()
{
cout << "h";
return 0;
}
Thanks
iwp506@gmail.co m
these errors:
C:\Programming\ Microsoft Visual Studio\MyProjec ts\HelloWorld\m ain.c(5)
: error C2065: 'cout' : undeclared identifier
C:\Programming\ Microsoft Visual Studio\MyProjec ts\HelloWorld\m ain.c(5)
: error C2297: '<<' : illegal, right operand has type 'char [2]'
#include <iostream.h>
int main()
{
cout << "h";
return 0;
}
Thanks
iwp506@gmail.co m
Comment