Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

im really desprate for help

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i downloaded and installed this version. now that is done how do i start up the program. i looked in the bin directory and couldnt find anything that started the program. where is the icon to start it?
 
Refresh out memories. Which version did you install?
James P. Cottingham

When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity.
[tab][tab]Albert Einstein explaining his Theory of Relativity to a group of journalists.
 
i installed borland turbo c++ v5 and i checked in the bin and there wasnt an icon to start it
 
What is the exe for Turbo C++ (TC.exe or something like that)? I haven't used it so I'm a little lost.
James P. Cottingham

When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity.
[tab][tab]Albert Einstein explaining his Theory of Relativity to a group of journalists.
 
hey this is need to know.

yeah i thought that to cause that is what my older version has, the tc.exe but i looked for it or something like it for the newer version and i couldnt find nothing. if u dont know whats wrong can u recommend and good c++ compiler/builder and the site to get it at?
 
Have you tried Borland's newer compiler (BC 5.5)? It's free but it won't do 16 bit programs, just 32 bit. See There is also a free debugger, too. Note, this is just the compiler, no IDE.
James P. Cottingham

When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity.
[tab][tab]Albert Einstein explaining his Theory of Relativity to a group of journalists.
 
ok i got v5.5 the new borland version. it is all installed but i cant figure out how to start this one. there is nothing in the bin called TC. i tried reinstalling and still the isnt anything. all there is that has an icon with a normal pic not just an empty box is this thing called fconvert.
 
The compiler is called BCC32.EXE. (Borland C++ Complier for 32 bit Windows.) Make sure your Borland's bin directory is on your path. Then with your favorite editor, enter the following:
Code:
#include <iostream.h>

int main()
{
        cout << &quot;Hi, World&quot; << endl;
        return 0;
}

Save this code as hi.cpp. Then at the command line (DOS prompt), type
Code:
bcc32 hi
. You should see something like
Code:
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
hi.cpp:
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland

When you run hi you should get your reply. James P. Cottingham

When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity.
[tab][tab]Albert Einstein explaining his Theory of Relativity to a group of journalists.
 
You can get a good IDE at objectcentral.com. I don't care for the V extensions, but the Vide for bcc32 is really good, and FREE.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top