Thread: how to start compiling w/Borland 5.5

  1. #1
    Useless Apprentice ryan_germain's Avatar
    Join Date
    Jun 2004
    Posts
    76

    how to start compiling w/Borland 5.5

    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

  2. #2
    Registered User Dante Shamest's Avatar
    Join Date
    Apr 2003
    Posts
    970
    Use #include and using namespace std;

    Code:
    #include <iostream>
    using namespace std;
    
    int main() {
      cout << "Hello world" << endl;
      return 0;
    }

  3. #3
    Useless Apprentice ryan_germain's Avatar
    Join Date
    Jun 2004
    Posts
    76
    yeah...that was my program...almost exactly

    anyways my mistake was i misspelled include...sorry for the waste of a thread

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Data Structure Eror
    By prominababy in forum C Programming
    Replies: 3
    Last Post: 01-06-2009, 09:35 AM
  2. Adventures in labyrinth generation.
    By guesst in forum Game Programming
    Replies: 8
    Last Post: 10-12-2008, 01:30 PM
  3. Screwy Linker Error - VC2005
    By Tonto in forum C++ Programming
    Replies: 5
    Last Post: 06-19-2007, 02:39 PM
  4. C++ gui for windows where to start
    By prixone in forum Windows Programming
    Replies: 2
    Last Post: 12-16-2006, 11:48 PM
  5. GNOME Desktop won't start (Mandriva)
    By psychopath in forum Tech Board
    Replies: 10
    Last Post: 07-19-2006, 01:21 PM