Thread: Trouble

  1. #1
    The New Guy
    Guest

    Exclamation Trouble

    I recently got a new programming book that came with the newest (at the time) version of the Borland Compile, version 5.5.
    I am kinda new to the whole programming thing, and am not familiar with this compiler. So I was wondering if someone could, in reply to this thread, give me a somewhat specific run through on how to work it, starting as if i have just finished (if there are no bugs) the program.

  2. #2
    Registered User Cela's Avatar
    Join Date
    Jan 2003
    Posts
    362
    For a straight compile with no extra checking, do this
    Code:
    C:\>bcc32 prog.c
    Borland <copyright compiler stuff>
    prog.c:
    Borland <copyright linker stuff>
    
    C:\>prog
    Your program runs here
    For ANSI checking and extra spicy warnings, use this :-)
    Code:
    C:\>bcc32 -A -w prog.c
    Of course, where I use C:\ you should have the pathname where the source file is located.
    *Cela*

  3. #3
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Trouble with assignment in C
    By mohanlon in forum C Programming
    Replies: 17
    Last Post: 06-23-2009, 10:44 AM
  2. Replies: 6
    Last Post: 01-03-2007, 03:02 PM
  3. Is it so trouble?
    By Yumin in forum Tech Board
    Replies: 4
    Last Post: 01-30-2006, 04:10 PM
  4. trouble scanning in... and link listing
    By panfilero in forum C Programming
    Replies: 14
    Last Post: 11-21-2005, 12:58 PM
  5. C++ program trouble
    By senrab in forum C++ Programming
    Replies: 7
    Last Post: 04-29-2003, 11:55 PM