Thread: C++ TURBO BORLANDS 4.5 for windows

  1. #1
    Unregistered
    Guest

    Unhappy C++ TURBO BORLANDS 4.5 for windows

    Does anyone know where I can download,Borlands c++ turbo 4.5 for windows or something similar?

    and doesnt 4++ in c++ language mean 4+1?
    making this.....sales*=4++ mean the same as.......sales=(sales*4)+1?

  2. #2
    Registered User
    Join Date
    Oct 2001
    Posts
    2,934
    >sales*=4++ mean the same as.......sales=(sales*4)+1?

    This should be written:
    (sales*=4)++;

  3. #3
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    It's not available for download. But you can buy it at Best Buy or a similar store for about $30. It comes in the C Programming Starter Kit - big ugly yellow box - also comes with Sams 24 Teach Yourself C in 24 hours book.

    If you want a free compiler go to www.delorie.com and get DJGPP or sign up for Borland's community, go to the musuem and download Turbo C++ 1.01. Not new tech by any means, but it is a compiler with an IDE and mouse support as well.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Remember Turbo? It is comming back
    By Mario F. in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 08-14-2006, 01:26 PM
  2. Borland's Turbo C++ appearence
    By skorman00 in forum A Brief History of Cprogramming.com
    Replies: 6
    Last Post: 07-19-2004, 12:22 AM
  3. Im having linking problems with turbo c++ ver 4.5
    By Marcos in forum C++ Programming
    Replies: 4
    Last Post: 05-17-2004, 04:57 PM
  4. Borland C++ v.5 & Borland Turbo C++ 4.5
    By Unregistered in forum C Programming
    Replies: 0
    Last Post: 07-21-2002, 03:30 AM
  5. Borland Turbo C++ 4.5 for Windows
    By sean in forum Windows Programming
    Replies: 0
    Last Post: 01-10-2002, 04:13 PM