hi,
when i compile a stupidly simple program...I get the following when compiling with Borland:
something like :
unknown processor directive: include
undefined symbol cout
any help?
thx
This is a discussion on how to start compiling w/Borland 5.5 within the C++ Programming forums, part of the General Programming Boards category; hi, when i compile a stupidly simple program...I get the following when compiling with Borland: something like : unknown processor ...
hi,
when i compile a stupidly simple program...I get the following when compiling with Borland:
something like :
unknown processor directive: include
undefined symbol cout
any help?
thx
Use #include and using namespace std;
Code:#include <iostream> using namespace std; int main() { cout << "Hello world" << endl; return 0; }
yeah...that was my program...almost exactly
anyways my mistake was i misspelled include...sorry for the waste of a thread