Hi, I installed a Borland C++ in my laptop a 32-bit operating system with windows vista.
I wrote i very simple program to display "Hello world" but it gives an error
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
the error is [noname00.ccp(3, 16): Namespace name expected, please help me
Mathew
I wrote i very simple program to display "Hello world" but it gives an error
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
the error is [noname00.ccp(3, 16): Namespace name expected, please help me
Mathew
Comment