I
IWP506
10 points (and a cookie) to whoever tells me why this code generates
these errors:
C:\Programming\Microsoft Visual Studio\MyProjects\HelloWorld\main.c(5)
: error C2065: 'cout' : undeclared identifier
C:\Programming\Microsoft Visual Studio\MyProjects\HelloWorld\main.c(5)
: error C2297: '<<' : illegal, right operand has type 'char [2]'
#include <iostream.h>
int main()
{
cout << "h";
return 0;
}
Thanks
(e-mail address removed)
these errors:
C:\Programming\Microsoft Visual Studio\MyProjects\HelloWorld\main.c(5)
: error C2065: 'cout' : undeclared identifier
C:\Programming\Microsoft Visual Studio\MyProjects\HelloWorld\main.c(5)
: error C2297: '<<' : illegal, right operand has type 'char [2]'
#include <iostream.h>
int main()
{
cout << "h";
return 0;
}
Thanks
(e-mail address removed)