Thread: Linking files?
View Single Post
Old 02-27-2003, 07:46 AM   #3 (permalink)
carrja99
Registered User
 
Join Date: Feb 2003
Posts: 34
carrja99 is on a distinguished road
I don't think linking files is your problem, most likely it is either your code or the compiler you are using. The simple basic "hello world" C++ program is:

Code:
#include <iostream.h>

int main()
   {
   cout << "Hello World!" << endl;
   return 0;
   }
As for a compiler, when I was a windows user I used Borland C++, which I thought was the best at the time. However, I currently use g++, and I think there is a windows equivalent named DJGPP or something like that. I suggest you look at that or the free Borland C++ compiler I keep hearing of.
carrja99 is offline   Reply With Quote