Guest_imported
New member
- Jan 1, 1970
- 0
hi,
i am new to c++ and i am just learning the hello world program. my compiler is "borland turbo c++" and the program is as follows (which you already know):
#include <iostream.h>
int main();
{
cout <<"Hello World!\n";
return 0;
}
but when i compile the program, it gives me two errors:-
1)unable to open file include file iostream.h (line 1)
2)declaration terminated incorrectly (line 5)
For the first problem, a book said "check your compiler documentation for directions on setting up your include path or environment variables", but i don't no what it means. so could you please give me a solution?
Thank you very much.
i am new to c++ and i am just learning the hello world program. my compiler is "borland turbo c++" and the program is as follows (which you already know):
#include <iostream.h>
int main();
{
cout <<"Hello World!\n";
return 0;
}
but when i compile the program, it gives me two errors:-
1)unable to open file include file iostream.h (line 1)
2)declaration terminated incorrectly (line 5)
For the first problem, a book said "check your compiler documentation for directions on setting up your include path or environment variables", but i don't no what it means. so could you please give me a solution?
Thank you very much.