PDA

View Full Version : Borland C Compiler



DWk
01-21-2004, 03:51 AM
Ok, can anyone direct me to a DIRECT link to (preferably) Borland's C compiler. I don't know the difference between C and C++, so I would like some links. Thanks :)

DWk
01-21-2004, 03:59 AM
By the way does anyone know if C is the same as C# ?

4play
01-21-2004, 04:08 AM
here (ftp://ftpd.borland.com/download/bcppbuilder/freecommandLinetools.exe)
or
here (http://altd.borland.com/download/bcppbuilder/freecommandLinetools.exe)

this is a free version of the borland compiler given away from there website. it is just the compiler with no fancy ide to develope with so i would recommend. you read
this (http://community.borland.com/article/0,1410,21205,00.html) on how to set it up.

you then just type bcc32 filename.cpp at your commandline to compile.

i think c# is the .net version of c but i have not looked into it so i could be very wrong.

DWk
01-21-2004, 04:14 AM
Originally posted by 4play@20 January 2004 - 21:08
here (ftp://ftpd.borland.com/download/bcppbuilder/freecommandLinetools.exe)
or
here (http://altd.borland.com/download/bcppbuilder/freecommandLinetools.exe)

this is a free version of the borland compiler given away from there website. it is just the compiler with no fancy ide to develope with so i would recommend. you read
this (http://community.borland.com/article/0,1410,21205,00.html) on how to set it up.

you then just type bcc32 filename.cpp at your commandline to compile.

i think c# is the .net version of c but i have not looked into it so i could be very wrong.
Thanks, I'm gonna try and check back here tomorrow :)

Schuler
01-21-2004, 05:26 AM
C, C++, and C# are all different languages.

C is basically the base language. C++ is C revamped, and C# is Microsoft's new language to kill Java. C++ is fading out as far as I know for Java, however C++ is a very very good language to know don't let me bash it. C is also tougher to learn than Java.

shn
01-21-2004, 06:14 AM
The new linux kernel 2.6 is written in all C. No C++.

@DWk The free borland compiler is command line only. ;)

4play
01-21-2004, 06:17 AM
Originally posted by shn@21 January 2004 - 06:14
The new linux kernel 2.6 is written in all C. No C++.

and i still cant get that damn thing working.

i really should read what modules i want and what needs to be compiled into the kernel itself. :(

shn
01-21-2004, 07:21 AM
Originally posted by 4play+21 January 2004 - 00:17--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (4play &#064; 21 January 2004 - 00:17)</td></tr><tr><td id='QUOTE'><!--QuoteBegin-shn@21 January 2004 - 06:14
The new linux kernel 2.6 is written in all C.&nbsp; No C++.

and i still cant get that damn thing working.

i really should read what modules i want and what needs to be compiled into the kernel itself. :([/b][/quote]
Find a good tutorial pertaining to your distro and make sure you enable kernel module support. Almost everyone wants modules. Its a shame is not built in by default. :)

DWk
01-21-2004, 11:48 AM
Originally posted by Schuler+20 January 2004 - 22:26--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (Schuler @ 20 January 2004 - 22:26)</td></tr><tr><td id='QUOTE'> C, C++, and C# are all different languages.

C is basically the base language. C++ is C revamped, and C# is Microsoft&#39;s new language to kill Java. C++ is fading out as far as I know for Java, however C++ is a very very good language to know don&#39;t let me bash it. C is also tougher to learn than Java. [/b]
Thanks for that :D

<!--QuoteBegin-shn
@DWk The free borland compiler is command line only. ;)[/quote]

That&#39;s not a problem. I don&#39;t mind compiling from DOS. The thing is I was confused on what to get (because I didn&#39;t know the difference between C and C#)

If you check borland.com, you shall see that they have a C++ Builder and a C#Builder, but I didn&#39;t see anything as a C Builder :ph34r:

shn
01-21-2004, 06:16 PM
I mostly use the gcc compiler. I believe they have a port for windows 32 bit systems.
http://gcc.gnu.org/

DWk
01-22-2004, 12:00 AM
Originally posted by shn@21 January 2004 - 11:16
I mostly use the gcc compiler. I believe they have a port for windows 32 bit systems.
http://gcc.gnu.org/
http://www.delorie.com/djgpp/getting.html

That&#39;s the one I suppose.... I&#39;m gonna look into it, thx for telling me they have a win32 port - I use linux in the uni, but don&#39;t want to install on my pc :D