Sunday, August 2, 2009

Did/Do You Love Turbo C?

two thumbs up from me.. :)





i used it in my college days..


from simple console programs,


to full blown apps,


and to my own version of "fakman".. :p





(remember guys the "conio.h", "graphics.h",


and the header stuffs that we always forgot


to include?.. aheheh.. )





TurboC rules.. ^^

Did/Do You Love Turbo C?
Yes, This was the First Programing Language which I've learned and I still like it. My blog http://codesbyshariq.blogspot.com contains majority of programs in Turbo C
Reply:Haven't used it in a LONG time but, Yes, I thoroughly enjoyed programming with it -- better than Microsoft C.





§
Reply:Do you mean the old Microsoft Turbo C for DOS, or the Borland Turbo C++ compilers?





Well, anyway, they are/were WAY BETTER than the utter garbage that's out there today like the stupid interpreted languages (C#, Visual Basic, JAVA, etc.).


Also, those stupid and completely unecessary C++ 'add ons' like frameworks, COM objects, and .NET produce incredibly bloated, slow code and just make me want to puke.


Where can I download TURBO C free? Any link please.?

I'll use it for academic purposes. Thanks.

Where can I download TURBO C free? Any link please.?
Turbo C is an old compiler, but it should work fine for the purposes of our class.





These are instructions for downloading and installing v2.01 of the Borland Turbo C compiler on Windows 95/98/NT. I have tested this procedure on Windows 95 and 98; it should also work on Windows NT and Windows 2000.





These instructions seem involved but the are fairly simple, if you follow them exactly.





1. Click here to download the zipped Free Turbo C Compiler.


2. Go to where you downloaded the file, and double click on the self-extracting file (turboC.exe) in Windows to extract it. This will bring up a WinZip Self-Extractor window (you do NOT need WinZip installed on your machine).


By default, this will extract the files to C:\tctemp directory. You may designate a different location.


Hit return to extract the files.


3. Exit the WinZip Self-Extractor window (by hitting return twice).


4. Once the files have been extracted, go to the directory c:\tctemp (or wherever you put the unzipped files), and double click on the file called install (it may be called install.exe).


5. This will step you through the installation.


* Hit enter to start the installation


* Select the drive where the unzipped file are. The default is "A", so you should enter "C".


Then hit return.


* Hit return, again. This installs from the directory, \tctemp.


* Hit return, again. This says to Install Turbo C on a Hard Drive.


* Use the Up/Down arrow keys (hit the up arrow once) to select Start Installation, and then hit return, again.


* At this point, the v2.01 Turbo C compiler is installed in C:\TC. That is where the tcc.exe executable is.


6. That's everything, but you must add C:\TC to your executable search path. The easiest way to do this:


* Bring up an MS-DOS window.


* Position the cursor on the title bar of the MS-DOS window and right-click.


* This pops up a menu. Click on Properties.


* At the top of the window, click on the Program folder.


* In the middle field, labeled Batch file:, enter the following:





C:\tctemp\init.bat





(This assumes that you unzipped the files into C:\tctemp.)


* Click OK at the bottom of the window.


* Close the MS-DOS window





7. Now you're done! Try it out by creating a small C program and compiling it.





* Bring up the MS-DOS window in the same way as you did above. (NOTE: You must close the first MS-DOS window.)


* Type tcc and hit return. You should see a usage message. describing all the many compiler options.


* Now create, compile, and run the Hello World! program.

long stem roses

Where do i get turbo c++ from?

http://www.borland.com/downloads/downloa...


This is the command line version of the compiler in their latest C++ Builder 5 product. It does not include a visual IDE, a debugger, or their VCL components, but it is a fully functional Win32 C and C++ compiler.





You must register to download this compiler, but it is completely free.

Where do i get turbo c++ from?
http://www.google.com/search?q=download+...
Reply:Don't try other site. directly go to microsoft.com/software


What are bugs of turbo C V.3?

find 10 main bugs inTC V.3

What are bugs of turbo C V.3?
Nobody even knows what TC V.3 is, let alone want to look for bugs..


Where can i get turbo c compiler?

Boreland no longer makes Turbo C.





You can try to find it on eBay.

Where can i get turbo c compiler?
try this link


http://bdn2.borland.com/article/21751
Reply:i have turbo c++ v3.0


if you want it i can upload it


contact me on silentsakky@gmail.com
Reply:A good substitute for turbo c is the gcc compiler (comes with cygwin)...


How can i open turbo c++ in full screen?

Although the programme works normal in a small window,but when full screened -- a black screen is displayed saying error code 0000,invld statement, press any key %26amp; then I am returned to desktop.I have installed the programme correctly.

How can i open turbo c++ in full screen?
Dear,





Alt+Enter will do.








In case of further issues regarding computers %26amp; internet dont forget to contact via...


Yahoo! Groups


vijaysomanath - Customer Support Knowledge Database,


http://tech.groups.yahoo.com/group/vijay...





¤ Regards, vijaysomanath


¤ http://www.spaces.msn.com/vijaysomanath


¤ Copyright © 1999-2006 vijaysomanath. All rights reserved.
Reply:I'm guessing this is the DOS version? It may need something to simulate a true DOS environment... perhaps DOSBox will help
Reply:It may be the problem in the display. (ie) your current display driver is not supporting full screen mode. Please check your display driver

gifts

Tell something interesting with Turbo C?

It was very interesting -- 20 years ago!


Now there's C++


How 2 write a turbo C program 2 find prime numbers?

#include%26lt;stdio.h%26gt;


#include%26lt;conio.h%26gt;


main()


{


int i,n,j,k=0;


printf("Enter the number.......");


scanf("%d",%26amp;n);


for(i=1;i%26lt;n;i++)


{


j=n%i;


if(j==0)


k=k+1;


}


if(k==1)


printf("yes its a prime number");


else


printf("u fool check the number, its composite");


}

How 2 write a turbo C program 2 find prime numbers?
Here's an example:


http://finiteonline.tripod.com/cprogs.ht...





Alternately, write a Forth interpreter in C and load this program of mine into memory:


: log2/? ." Gives the base 2 logarithm, rounded down. Returns 0 for values less than 1." cr ;





: sqr-guess dup log2 2 + dup * / 1+ ;





: sqr-guess/? ." Estimates the square root, badly. Ideal for numbers around 10,000 to 100,000." cr ." Primarily used as a starting point for the iterative square root calculator." cr ;





: sqr dup sqr-guess


begin


dup dup dup * swap 1+ dup * 3 pick %26gt; -rot 3 pick %26lt;=


tuck not if 1- then rot tuck not if 1+ then -rot and


until


nip


;





: sqr/? ." Gives the square root of the number, rounded down. Uses an iterative method" cr ." based on a starting point guess." cr ;





: isprime dup 4 %26lt; if 1 %26gt;


else dup sqr


begin


2dup / over * rot dup rot = not negate rot *


1- dup 2 %26lt;


until


nip 0%26gt; then


;





: isprime/? ." Figures if a given number is prime, using the sqr function." ;





: primelist 2


begin


dup isprime if dup . then 1+ 2dup %26lt;


until 2drop ;

innia

Where can i get turbo C free download?

Are you programming for DOS (i.e. 16-bit)? If you just want a C compiler, I suggest Visual C++ (it compiles C as well) or gcc (which is more up to date on C). MingW is the gcc port to Windows.

Where can i get turbo C free download?
Follow this link http://dn.codegear.com/article/20841 and click on "Turbo C 2.01 zip file" to download the installation file.


What is "c language" in programming? where i can download "turbo c"?

http://www.acms.arizona.edu/education/op... to download Turbo C Compiler and Editor.





Turbo C was a Borland Integrated Development Environment and compiler for the C programming language. It is a non Obeject Oriented Programming language. It was first introduced in 1987 and was noted for its integrated development environment, small size, extremely fast compile speed, comprehensive manuals and low price.

What is "c language" in programming? where i can download "turbo c"?
C as opposed to C++ is a low level linear programming language while C++ is a higher level object oriented programming language based on C and using C syntax. It is one step above assembly code. Compilers for C and C++ typically come with Unix and Linux development environments. The compiler is usually called GCC or G++. These open source compilers will compile both C and C++ code.





Turbo C was made by Borland a long time ago. If you are looking for a free C or C++ development for windows, I suggest downloading and using the free MS Visual Studio 2005 Express version from MS.
Reply:C is a procedural programming language which is considered to be a low-level programming language due to its ease in interacting with hardware devices as well as a high-level programming language due to its ability to write somewhat portable code.





You can download Turbo C at: http://www.pitt.edu/~stephenp/misc/downl...





But I would suggest http://www.bloodshed.net/devcpp.html


Where can i download turbo c++IDE free?

Not sure if there is full blown IDE since that is old technology, if you're looking for a borland compiler www.borland.com


borland c++ 5.5 is free you can also try


www.thefreecountry.com , they have a lot of selection of free compilers there, if you just starting out look into Bloodshed dev





http://www.thefreecountry.com/compilers/...


Where can I get Turbo C software? Can I download ?

Yes, Borland is still producing it - although it's under a slightly different branding. It comes in two versions, one an "explorer" for free - www.turboexplorer.com and one "Pro" with more features (like a customizable IDE) and a price tag. The C++ version will allow standard C.





If all you're after is a C compiler %26amp; IDE, there are many other products out there that are freeware - search for Freeware C compiler and you'll find a lot available. There's a directory at http://www.compilers.net/Dir/Free/Compil... with a large list of links.

gerbera

How can i download turbo c++ compiler??

if you go to http://www.turboexplorer.com/ you can get it from there free, but I use Dev-cpp And it works great you can get it at http://www.bloodshed.net/devcpp.html or if you want Micro$ofts free Visual C++ you can get it at http://msdn.microsoft.com/vstudio/expres...


and if you want to look at others you can see a list of free programming languages at http://www.thefreecountry.com

How can i download turbo c++ compiler??
http://cplus.about.com/od/learnc/ss/tcsh...


Where can i download turbo c for vista? Can i get it for free?

http://www.turboexplorer.com/


WHER DO I DOWNLOAD turbo C++?

From here: http://bdn.borland.com/article/images/21...


Does mouse work in turbo-C?

If you mean mouse support in your DOS software compiled with TurboC, read this:


http://www.geocities.com/rk_page/

Does mouse work in turbo-C?
Yes mouse do work in TurboC and it looks like a small rectangular box..not like an arrow pointer.
Reply:Yes
Reply:of course buddy !!!!!!!!!!!!!!!1 but it ll not resemble the one as in windows but a rectangular block like!!!!!!!!!!!
Reply:mouse works in turbo c...actually when the editor gets opened..when u press alt+enter in the keyboard the editor gets maximized and the mouse works in turbo-c...check it out..thanks for makin me earn two points..
Reply:yes but the mouse pointer doesn't look like a mouse pointer. lolz

rosemary

How can i free download c language( turbo c) from internet into my pc?

http://www.pitt.edu/~stephenp/misc/turbo...





But yes, like he said. GCC is the way to go

How can i free download c language( turbo c) from internet into my pc?
Microsoft give away express versions of C++ and C# and VB
Reply:If you want to start compiling C programs, then virtually all Linux distros come with a great C and C++ compiler - gcc. Its free, and up-to-date:





http://gcc.gnu.org/





Grab a copy of Ubuntu:





http://www.ubuntu.com





and you're ready to go!





Turbo C is rather old, but here is the link! Back to the 80's!





http://dn.codegear.com/article/20841





http://www.thecatalogshop.co.uk/catalogu...


Where can i download turbo C compiler for free?

this place,


http://www.pitt.edu/~stephenp/misc/downl...





or for sure, try searching from this link





http://www.google.co.th/search?hl=th%26amp;q=%...

Where can i download turbo C compiler for free?
here are links to Turbo C compiler
Reply:this work for you??





http://www.programmersheaven.com/downloa...
Reply:Honey forget about turbo-C





Try this free DEV C++ compiler. It is totally free and MUCH more advanced than Turbo C.





http://www.bloodshed.net/devcpp.html
Reply:I don't think you can get turbo C for free. You can get Gnu C or C++ compilers for free.





I guess you can, good deal, I'll have to bm that site.


How do i install turbo c++ ????? someone plz help!!!!!?

firstly.....if U can buy a CD ...get one.....another way is.....if any of ur friend has a Turbo C installed in her/his computer.....U just hav to copy the whole folder(TC folder) and then paste it in Ur C drive ..........it will run perfectly.....U wont even have to install.....it can be done thru copy paste.....

How do i install turbo c++ ????? someone plz help!!!!!?
ask your friends for setup, i am sure some of them might be having. once you get the setup you just have to run it.for downloading borland c++u may go to: http://dn.codegear.com/article/21751
Reply:step1: select the setup.exe


step2: then set path for the header files and library files


step3:then run the applciations
Reply:urbo C is an old compiler for Windows platforms, but it should work fine for the purposes of our class.





These are instructions for downloading and installing v2.01 of the Borland Turbo C compiler on Windows 95/98; it should also work on Windows NT and Windows 2000.





These instructions seem involved but the are fairly simple, if you follow them exactly.





1. Click here to download the zipped Free Turbo C Compiler.


2. Go to where you downloaded the file, and double click on the self-extracting file (turboC.exe) in Windows to extract it. This will bring up a WinZip Self-Extractor window (you do NOT need WinZip installed on your machine).


By default, this will extract the files to C:\tctemp directory. You may designate a different location.


Hit return to extract the files.


3. Exit the WinZip Self-Extractor window (by hitting return twice).


4. Once the files have been extracted, go to the directory c:\tctemp (or wherever you put the unzipped files), and double click on the file called install (it may be called install.exe).


5. This will step you through the installation.


* Hit enter to start the installation


* Select the drive where the unzipped file are. The default is "A", so you should enter "C".


Then hit return.


* Hit return, again. This installs from the directory, \tctemp.


* Hit return, again. This says to Install Turbo C on a Hard Drive.


* Use the Up/Down arrow keys (hit the up arrow once) to select Start Installation, and then hit return, again.


* At this point, the v2.01 Turbo C compiler is installed in C:\TC. That is where the tcc.exe executable is.


6. That's everything, but you must add C:\TC to your executable search path. The easiest way to do this:


* Bring up an MS-DOS window.


* Position the cursor on the title bar of the MS-DOS window and right-click.


* This pops up a menu. Click on Properties.


* At the top of the window, click on the Program folder.


* In the middle field, labeled Batch file:, enter the following:





C:\tctemp\init.bat





(This assumes that you unzipped the files into C:\tctemp.)


* Click OK at the bottom of the window.


* Close the MS-DOS window





7. Now you're done! Try it out by creating a small C program and compiling it.





* Bring up the MS-DOS window in the same way as you did above. (NOTE: You must close the first MS-DOS window.)


* Type tcc and hit return. You should see a usage message. describing all the many compiler options.


* Now create, compile, and run the Hello World! program.





Refer this site:





http://www.acms.arizona.edu/education/op...
Reply:plz run the setup.exe from the package that u have.


it is very easy .
Reply:run setup if available or paste the folder in programs in the drive with system info


How do write a turbo C program...?

that interchanges X and Y using only 2 variables and using 3 mathematical statements

How do write a turbo C program...?
x=x+y


y=x-y


x=x-y
Reply:main()


{


int a,x,y;


a=x;


x=y;


y=a;


}





thank u.
Reply:#include%26lt;conio.h%26gt;


#include%26lt;stdio.h%26gt;


main()


{


int x,y ;


printf("Enter 2 nos.");


scanf( "%d %d",%26amp;x,%26amp;y);


x=x+y;


y=x-y;


x=x-y ;


printf("x= %d, y=%d",x,y);


getch();


}

wallflower

Where do i found turbo c Compiler Free of cost?

UR COLLEGE LIBRARY MUST BE HAVING THE CD.

Where do i found turbo c Compiler Free of cost?
Hi friend,





Turbo C Compiler is not for free!


But if it is for you to learn then you can download


a bit older version which is free from





http://www.acms.arizona.edu/education/op...





for learning purpose i think this is more than enough


and it is free!!





Ha-p Computing..
Reply:Free C, C++ Compilers and Interpreters





Turbo C++ Explorer New





Borland's TurboExplorer C++ Explorer Edition allows you to develop C++ applications for Windows using the Borland Turbo C++ compiler and IDE. The package boasts of integrated compilers, RAD visual designers, rich debugging features, Code Insight, templates, a history manager, a database explorer and connectivity, included Borland InterBase and MSDE, support for DCOM, ActiveX, .NET remoting, many pre-built components, etc. You have to register (free) to get the activation key.


Free Microsoft Visual C++ 2005 Express





Microsoft Visual C++ 2005 Express is currently available for download, free of charge, from Microsoft's site. It allows you to create programs for the .NET framework as well as native Win32 programs. It comes with an optimizing C++ compiler, linker, debugger, static libraries (including the Standard C++ Library and STL), the MSDN Express Library and Microsoft SQL Server 2005 Express Edition. If you wish to create native Win32 programs, you will need to download the Microsoft Windows Platform SDKseparately and install it. Like all the current versions of Microsoft software, it requires Windows 2000, XP, 2003, Vista (or their x64 versions). Note that unlike the commercial Visual Studio Professional 2005, it does not have 64-bit support, MFC, ATL, Win32 resource editor, macro assembler, source code control integration, etc.


Free Microsoft .NET Framework Software Development Kit (SDK) / Free Microsoft Visual C++ Compiler





The Microsoft Visual C/C++ command line compiler, along with C#, VB.NET and JScript.NET, is available from Microsoft for download for free. You will also need to download the Microsoft Windows Platform SDKwhich contains the Windows headers and libraries for the compilers. The command line compiler (at the time this was written/reviewed) does not have an optimizer (or at least, not the optimizer that ships with the Professional version).


Open Source Watcom / OpenWatcom C/C++ Compiler





The Watcom C/C++ compiler (now OpenWatcom C/C++ compiler) is now open source and free. This compiler, which generates code for Win32, Windows 3.1 (Win16), OS/2, Netware NLM, MSDOS (16 bit and 32 bit protected mode), etc, was a highly coveted compiler some years back (until Sybase terminated it). The compiler also includes the rather well-known STLport (a C++ Standard Template Library implementation).


Intel C++ Compiler for Linux Non-Commercial Version





The Intel C++ compiler has a non-commercial version for Linux which you may use to develop your programs for non-commercial purposes (read their licence for more information). The optimizing ANSI C/C++ compiler supports all Intel 32 bit processors and the 64 bit Itanium processor.


Apple's Macintosh Programmer's Workshop (C and C++ compilers)





Yep, you're right. This is Apple's own Macintosh Programmer's Workshop. The C/C++ compilers, debuggers, tools, etc, in this workshop are all downloadable from their web site, free! They're the same those you get from their Developer CD. Full documentation about the compilers as well as documentation about programming for the Macintosh in general can be found online. You get the SC/SCpp (68k), which are ANSI compliant C and C++ compilers that generates 680x0 code; as well as MrC/MrCpp which generates C/C++ code for the PowerPC. You also get two assemblers (one for the 68k and one for the PowerPC), the shell, linkers, a Make tool, resource manipulation and analysis tools, file comparison tools, editor, three debuggers, etc. If you want to be on the cutting edge, you can also download the absolutely latest compilers which are still under testing (but having the latest bug fixes and C++ support). CodeWarrior plugin compilers appear to be available from the site as well. (Note - this tool set is for Mac OS 7.X/8.X/9.X program development.)


Digital Mars C/C++ Compiler (Symantec C++ Replacement)





Digital Mars C/C++ is a drop-in replacement for the Symantec C++ compiler, with support for compiling programs for Win32, Windows 3.1, MSDOS, and 32-bit extended MSDOS. If the target machine does not have a floating point processor (pre-Pentium machines), you can link the floating point emulation into your program. The compiler supports the C++ definition found in The Annotated C++ Reference Manual (ARM) and the enhanced language features of AT%26amp;T version 3.0, including templates, nested classes, nested types, exception handling, and runtime type identification.


UPS Debugger (C Interpreter)





This is actually a graphical source level debugger for X Windows, but it contains a built in C interpreter which can handle single or multiple source files. You can use it to build a byte-code executable and execute the interpreter on that executable. If you need an interpreter to debug or prototype programs, or to just learn the language, check this out. It supports the following platforms: Solaris, SunOS, Linux, FreeBSD, BSD/OS, and possibly other Unices.


The BDS C Compiler





Remember the old (famous) BDS C compiler for 8080/Z80 CP/M systems? It is now in the public domain, complete with assembly language source code. The package is the retail version of the compiler, with a linker and user manual. Before you scoff at this, remember that it can be used to generate 8080/8085/Z80 code for embedded systems with a little bit of work (ie, write your own routines to replace any runtime library code that access the operating system functions).


Bloodshed Dev-C++ C++ Compiler





This is a Win32 integrated development environment that includes the egcs C++ compiler and GNU debugger from the Mingw32 environment together with an editor and other facilities to make program development using the Mingw32 gcc compiler easier on a Windows platform. It also includes an installer for your applications.


DeSmet C





DeSmet C will be familiar to those who programmed in C in the 1980s. It is an MSDOS C compiler. It has been released under the GNU GPL, and comes with manuals, an editor, and a third party optimizer.


Sun Studio Compilers and Tools





Sun Studio Compilers and Tools for Linux and Solaris OS on Sparc and x86/x64 platforms includes command line tools as well as a NetBeans-based IDE for developing, compiling and debugging C, C++ and Fortran programs. It also includes performance analysis tools. You have to join the Sun Developer Network (SDN) to get access to the free compilers. As far as I can tell, joining the SDN is free.


OnBoard Suite





The OnBoard Suite creates executables (or, if you wish, a Hackmaster hack) for the Palm PDA. It includes a C compiler, assembler, programmer's editor and a Palm-to-host porting tool. The Suite runs directly on PalmOS, on the Palm handheld.


Open64 Compiler Tools





Open64 comprises optimizing compilers for C, C++, and Fortran 90/95 for Intel Itanium systems running Linux. The compiler is the successor to the SGI Pro64 compiler suite, now released under the GNU GPL.


HP-GCC





HP-GCC comprises the GNU C compiler targeted at the ARM processor of ARM-based HP calculators (like the HP49g+), HP specific libraries, a tool (ELF2HP) that converts the gcc produced binary to the appropriate format for the HP calculator, and an emulator (ARM Toolbox/ARM Launcher) that lets you execute ARM programs on your computer. At present, Windows and Linux versions are available.


z88dk - The z88 Development Kit





z88dk is a z80 C cross compiler based on the Small C compiler, supporting many features of ANSI C. It comes with an assembler and linker as well as a standard C library. Supported host systems include Amiga, BeOS, HP-UX 9, Linux, BSD systems, MacOS X, Solaris, Win32, Win16 and MSDOS. The compiler generates code for the following target systems: Cambridge Computers z88, Sinclair ZX Spectrum, Sinclair ZX81, CP/M based machines, Amstrad NC100, VZ200/300, Sharp MZ series, TI calculators (TI82, TI83, TI83+, TI85, TI86), ABC80, Jupiter Ace, Xircom REX 6000, Sam Coupe, MSX1,Spectravideo, Mattel Aquarius, Peters Sprinter, and C128 (in z80 mode).


Cyclone C





Cyclone C is not strictly an ANSI C compiler but a compiler of a "safe dialect" of C. It enforces type safety, has a variety of checks to protect against buffer overflows, array-bound violations, etc. It currently works on Linux and Windows (the latter via Cygwin), and requires you to have the GNU compiler tools on your system (see elsewhere on this page).


TenDRA C/C++ Compiler





TenDRA is a free C/C++ compiler and source code checker (like lint) that runs on a variety of Unix systems like AIX, HP-UX, Linux, Irix, OSF1, SCO, Solaris, SunOS, Ultrix, and Unixware. You can use it to replace your system C compiler, or use it as a lint-like utility to check your source code for correctness and potential bugs. The compiler comes bundled with sid, an LL(1) parser generator.


Tiny C Compiler - Smallest Linux C Compiler





This small Linux C compiler generates optimized x86 native binaries. It purportedly compiles, assembles and links several times faster than GCC. The compiler is currently moving towards ISO C99 compliance. It also includes an optional bounds checker. It also handles C script files (just add the shebang line #!/usr/local/bin/tcc to the first line of your C source code file to have it executed directly. TCC is distributed under the GNU General Public License.


Portable Object Compiler





This is a set of Objective C class libraries and a compiler that translates your Objective C code to plain C code. It works on Windows, Linux, OS/2, Macintosh, etc.


Mingw32 C %26amp; C++ Compilers





This system comes with the GNU C/C++ compiler, which you can use to generate Win32 executables. It has its own %26lt;windows.h%26gt; which is in the public domain. Applications generated using this system are supposed to be faster than those generated by the Cygwin32 system (see elsewhere on this page), and they are free from the encumberances of the GNU license. Like other systems based on the GNU tools, Mingw32 comes with complete with various programming tools, such as a program maintainence program (ie, make), text processing tools (sed, grep), lexical analyser generator (flex), parser generator (bison), etc. It also comes with a resource compiler, allowing you to compile your Windows resources.


GNU C/C++ Compiler and EGCS





This is the GNU C compiler page, from which you can get links to binaries and source code for the GNU C Compiler. Note that the EGCS compiler is now the new GNU C compiler, and the sources for both compilers will eventually be merged. You can also use our links on this page for the most commonly requested binary versions (MSDOS and Win32).


Pelles C Compiler





This is another Windows-hosted C compiler that is based on LCC (see also LCC-Win32 elsewhere on this page). It contains a C compiler, linker, resource compiler, message compiler, a make utility, etc. It compiles code for both Windows and Pocket PC.


Compaq C Compiler





Linux/Alpha users can now download and use Compaq's optimising C compiler freely by simply filling a form and agreeing to their license agreement. The compiler may be used to generate any sort of program, commercial or otherwise. The compiler includes a math library and a debugger (ladebug) ported from True64 Unix. It comes with the usual man pages as well as a Language Reference Manual and a Programmer's Guide.


Ch Embeddable C/C++ Interpreter (Standard Edition)





Ch is a C/C++ interpreter that supports the ISO 1990 C Standard (C90), major features in C99 (complex numbers, variable length arrays or VLAs, type generic functions, long long data type, etc), classes in C++, and extensions to the C language like nested functions, string type, etc. It can be embedded in other applications and hardware and used as a scripting language. Your C/C++ code is interpreted directly with no compilation to intermediate code. Since it supports Linux, Windows, MacOS X, Solaris and HP-UX, it means that your code should be portable to any of those platforms once you write it for this compiler. The standard edition is free for personal, academic and commercial use. You need to register to download the package.


DJGPP C and C++ Compilers





This is a development system based on the well-known GNU C/C++ compiler. It generates 32 bit MSDOS executables that is Windows 95 long-filename-aware. It is a very complete system with IDEs, graphics libraries, lexical analyser generators (flex), parser generators (bison), text processing utilities (like grep, sed), a program maintainence utility (ie, make), a dos extender, and so on. The compiler, utilities and libraries come with source code.


Reads51 Small C Cross-Compiler





Version 2.0 of Reads51 comes with an assembler that runs under Windows 3.1 to generate 8051 code. It comes with an IDE, editor, debugger, and monitor. Version 4.10 includes a Small C compatible 8051 compiler, a relative assembler, a linking locator (loader), an editor, a chip simulator, an assembly language debugger and a monitor. This version runs under Windows 95, 98 and NT. With these tools, you can write, compile, assemble, debug, download and run application software (including embedded control software) in the MCS-51 language. It comes with an online help system. If you do not buy their board, you may only use the software for non-commercial home and educational purposes.


Cilk ANSI C Based Compiler





Cilk is an ANSI C-based language that can be used for multi-threaded parallel programming. It "is especially effective for exploiting dynamic, highly asynchronous parallelism in data-parallel or message-passing style". Their website mentions that Cilk has already been used to develop three world-class chess programs, StarTech, Socrates and Cilkchess.


ANYC C Compiler





AnyC is a retargetable C compiler released under the GNU GPL. It is intended for use with 8 bit microprocessors, particularly 8 bit RISC microcontrollers. The original target is the Microchip PIC 16C5X family of 8 bit RISC microcontrollers.


Sphinx C-- Compiler





This MSDOS compiler is a sort of hybrid C compiler and assembler that allows you to "create programs with the power and readability of C while retaining the efficiency of assembly language." It can produce MSDOS executables or .OBJ files which you can use in conjunction with other linkers to generate an executable. The above link leads to the source code and documentation for the compiler. If you want a precompiled binary, you can get it from the Unofficial Sphinx C-- Compiler site.


LSI C-86 C Compiler





The website for this compiler is written in Japanese which unfortunately is not displayed correctly in my browser (I don't have the necessary fonts), so I'm not able to comment for certain about this compiler. It looks like a cross-compiler that allows you to generate ROMable code. An older version (3.30c) of the compiler appears to be free. The free version runs on MSDOS only.


ACC C Compiler





This is an MSDOS compiler that handles a subset of the C language with some extensions (eg the #asm directive for inline assembler). Floating point is not supported. It generates protected mode 32 bit assembler code, which you will have to assemble and link using the supplied A86 assembler and linker. A copy of the DOS extender will also be embedded into your application.


CINT C and C++ Interpreter





This is a C/C++ interpreter that comes with source code. It can be compiled and used on a large variety of Unices, including HP-UX, Solaris, SunOS, AIX, Alpha/OSF, FreeBSD and Linux, as well as Windows NT. You can even issue system calls from the interpreter (such as Posix calls on Unix or Windows API calls from Windows). It accepts most of K%26amp;R and ANSI C and is close to the standard C++ (at the time of this writing). As with all interpreters, it may be useful in debugging programs or learning the language.


SDCC C Cross-compiler





This is a C cross-compiler that targets the Intel 8051, Maxim 80DS390 and the Zilog Z80 based MCUs. It can also be retargetted for other 8 bit MCUs or PICs. It comes with a retargetable assembler and linker, a source level debugger and a simulator, and it is capable of a variety of optimisations. Source code for the compiler is available under GPL. Host platforms supported include Linux, Windows, Mac OS X, Alpha, Sparc, etc.


CC386 C Compiler





This is a 32-bit MSDOS ANSI C compiler that comes with a runtime library, linker, rudimentary debugger, DOS extender and a make utility. Source code is also available.


CC65 C Cross-Compiler





A cross-compiler for the 6502 that is a derivative of the Small C compiler. It runs on Win32, DOS, Linux and OS/2. It generates binaries for the Commodore C64, C128, C16, C116, Plus/4, and the 600/700 family of compilers. You can also use an emulator (linked from their web page) to emulate many different CBM machines from Linux.


Cygwin Project (C %26amp; C++ Compilers)





This "project" includes a commercial quality compiler (GNU C/C++) that generates Win32 GUI and console applications. I have not used this port myself, but based on what I read, it appears that they have their own %26lt;windows.h%26gt; and so on. Source code for the compiler, libraries and tools are provided. Note that the default option in this package forces you to distribute your source code if you compile and link with their libraries. There is also a special option that you can invoke which will cause it to link with alternative libraries, allowing you to distribute your applications without sources. It appears that the free version has not been updated for some time now.


LCC-Win32 C Compiler





This is a C compiler that generates Win32 GUI and console applications. It comes with its own linker, IDE, debugger, resource editor and resource compiler. LCC-Win32 is based on the LCC compiler (see elsewhere on this page).


LCC - A Retargetable Compiler for ANSI C





LCC is a C compiler (source code only) that generates code for the Alpha, Sparc, MIPS R3000 and Intel x86. There is also a book A Retargetable C Compiler written by the authors of the compiler that explains the code of the C compiler. This compiler is the basis of at least 2 other Win32 C compilers (also listed on this page).


Pacific C Compiler





This is a MSDOS C compiler that comes with a development environment. You can distribute programs compiled with the compiler freely.


ATTOC C Compiler





A MSDOS based C compiler that generates assembly language files. You can use either MASM or TASM to assemble the generated file. I'm not sure if there are any libraries or headers included (you have to check it out yourself).


Leonardo IDE





Leonardo IDE is a Macintosh-based IDE, compiler and debugger for C programs. The Windows and Linux ports are said to be under development. It has a syntax highlighting editor, an ANSI C compiler, a compiler for the ALPHA visualization language, a graph editor, a reversible virtual CPU, etc. Note that the programs are not compiled to native code but to code to be executed for the virtual CPU. The virtual machine and debugger allows you to execute code forwards and backwards and supports multitasking. The IDE comes with animated algorithms, plus example source code for games like Tetris, Checkers, etc. The IDE is useful for checking and debugging your source code, search for memory leaks, etc. Update: this project has been discontinued.





Download


http://www.thefreecountry.com/compilers/...





********





http://www.acms.arizona.edu/education/op...





********





his page is divided into 4 sections (some may be added in future).





1°)Free compilers (with source code)





2°)Compiler construction toolkits





3°)Tutorials and articles





4°)Links to compiler-related sites





1°)Free compilers





Here is the free compilers list. If you want to add a new one to this list, click here.





Turbo Pascal and Turbo C: Borland has released for free version 1.0, 3.2 and 5.5 of its famous Turbo Pascal.





Dev-Pascal : Free IDE and compiler for Pascal (with Free Pascal).





Dev-C++ : Free IDE and compiler for the C and C++ languages. Delphi and C source code available.





SmallC : Small C compiler written by J. E. Hendrix. C source code included.





BCX : Very powerful and easy to use system which generates C code capable of compiling under Lcc-Win32 and MingW32 (or Dev-C++) without any modification. It also comes with a resource translator which can read MS resource's code and produce code in C (Win32).





CoPascal : Co-Pascal is an extension of the Pascal-S compiler developed by N. Wirth. Pascal source code included.





P32 : Pascal compiler. Currently in development but works great. Pascal source included.





PowerPascal : Power Pascal is a fully 32-bit, native Pascal compiler for OS/2 2.0 or better. Pascal source included.





Djgpp : THE free compiler for c, c++, forth, pascal and more including C sources.





TinyPascal : A small implementation of the Pascal language. Full Delphi sources included.





Free Pascal : 32-bit Pascal compiler for Dos, Linux, OS/2. Pascal source code included. Used in Dev-Pascal.





ScriptBasic : Free embeddable and extendable scripting basic interpreter with full C source code. Tested on Windows NT and on Linux.





LCC-Win32 : a free compiler system for Windows by Jacob Navia.





lcc : lcc is a retargetable compiler for ISO Standard C. It generates code for the ALPHA, SPARC, MIPS R3000, and Intel x86 and its successors.





Yabasic : Small basic interpreter (with source code for Visual C++ 6) for Windows and Linux





Pacific C for DOS : Freeware version for MSDOS of a professional C IDE/compiler shareware





TopLogo++ : This is an IDE/compiler tool for developers and scientists. The package includes full documentation, Compiler IDE, demos, help etc...





JavaTM 2 SDK : JavaTM Software Development Kits and Runtimes





XBasic : interactive program development environment, advanced 32-bit/64-bit BASIC, interactive graphical GuiDesigner, multi-platform portable source code, Windows95 - Windows98 - WindowsNT - Linux - UNIX





XSCompiler : This MSDOS compiler generates 32-bit protected mode programs from a language that is C compatible, but includes classes and multiple inheritance. It comes with the standard C library, graphics, sound, multitasking, compression, animation, GIF, PCX, FLI/FLC, and other libraries. The compiler itself is compiled using this language.





GNAT : GNAT is an Ada95 compiler with the source code available in Ada95.





Rapid-Q : Rapid-Q is a free IDE and BASIC op-code compiler system for Win32, Linux, Unix... It is very easy to use and to integrate with many other goodies like mySQL, cgi, DirectX, Direct3D, GTK ...





Mingw : A very good Win32 port of the GNU GCC compiler (used in Dev-C++)





Cygwin : Another free and good Win32 port of GCC and GNU Utils





GCC : THE one and only GCC compiler system. Runs on nearly any system.





Phoenix/Envelop : Rapid Development under Basic.





B++ : B++ is a BASIC compiler built on top of C++ - it converts BASIC code to C++, and then calls C++ compiler to produce EXE (or DLL). Source code is in Free Pascal.





GNU Ada : Free ADA compiler.





Dev86 / BCC : x86 C/Assembler development tools (C compiler, assembler, linker). Under the GPL. Linux and DOS binary distributions available.





http://www.digitalmars.com : FREE C/C++ Compiler for DOS, Win %26amp; NT by theauthor of Zortech C++ .





Virtual Pascal : A tool of choice for 32-bit cross-platform development using the Pascal language. It is compatibile with Borland Pascal and Delphi, including the Run-Time Library (RTL), an optimizing compiler, a powerful integrated debugger, and comprehensive online documentation.





PlugSys Xbase compiler : PlugSys has a free edition and a Professional edition on their web site. It is a character based compiler for the Xbase(dbase, clipper) language. There are both DOSWin95/98/NT and Linux version. Same code compiles on either system. Also has a server page tool (free and pay versions). The documentation that comes with the download is great. Free version only requires registration to download.





Context programming language : Simple programming language and compiler for MS-DOS with sources and sample programs on it's own input language by Andrei V. Khokhlov





Babya : B++ compiler for DOS with setup and Windows 9x support.





OpenWatcom : Open Watcom is a joint effort between SciTech Software, Sybase®, and a select team of developers, which will bring the Sybase Watcom C/C++ and Fortran compiler products to the Open Source community.





Self : A port of a compiler for the Self programming language to Linux. The system was originally developed at Stanford University and Sun, and it forms the technological base of the Java Hotspot compiler. A nice GUI is included.





SmallEiffel : The GNU compiler for the Eiffel language. Requires an ANSI C compiler. Supports AIX, Amiga, BeOS, BSD, Cygwin, MSDOS, FreeBSD, GNU/Hurd, GNU/Linux, HP-UX, IRIX, MacOS, NetBSD, NeXT, OS/2, OSF1, QNX, SCO, Solaris, OpenVMS, Windows 95/98/NT/2K and XENIX.





Inno Pascal : Inno Pascal is a simple Pascal compiler for Win32. It produces compact, native-code x86 executables without requiring any external assemblers or linkers. It was written entirely from scratch; it is not based on any other existing compilers. Full source code is included under the GPL license.





Harbour Project : Harbour is an Open Source Clipper Compatible Compiler. It includes OO extentions, and lots of useful adds. The Licence is GNU+Harbour Exception, what means that the licence does not infects the programs you produce with the compiler.











2°)Compilers construction toolkits





Here is the compilers construction toolkit list. If you want to add a new one to this list, click here.





Bison and Flex : Yacc and Lex clones. Creates parsers and scanners for compilers.


TPYacc and TPLex : Port of the Yacc and Lex tools to Turbo Pascal. This tools creates parsers and lexical scanners for compilers.


Coco/R : Coco/R combines the functionality of the well-known UNIX tools lex and yacc, to form an extremely easy to use


compiler generator that generates recursive descent parsers. Available versions ( Oberon, Modula-2, Pascal, Delphi, C and Java) for more info see http://cs.ru.ac.za/homes/cspt/cocor.htm


antlr : another tool for language recognition Tool written in Java for generating recognizers in Java or C++. No money required for use, but download requires online registration for authors tracking purposes. Runs with SUN Java SDK.


Delphi Compiler Generator : Runs on Win32 only, written in Delphi, source code included. Free (as in "free beer", not "free speech") for non commercial use


GENTLE Compiler Construction System : This compiler construction tool purports to provide a uniform framework for language recognition, definition of abstract syntax trees, construction of tree walkers based on pattern recognition, smart traversal, simple unparsing for source to source translation and optimal code selection for microprocessors. Note however that if you use it to create an application, the licensing terms require that your applications be licensed under the GNU GPL.


Jacc : Jacc is a general-purpose parser generator that given a LALR(1) context-free grammar generates the source(s) of a C++ class that implements a parser for the language defined by the grammar. Jacc has a robust and powerful semantic value type system that allows the user to benefit by the OO language environment. Another innovative feature is its customizable code generating back end - the Jamp macro processor which generates the final sources based on a template file and attributes defined in the jacc grammar file. This way the user has better control to the style and structure of the generated code.





3°)Tutorials and articles





Here is the tutorials and articles about compiler writing. If you want to add a new one to this list, click here.





Let's build a compiler : A very good tutorial on writing a simple compiler in 16 articles. By Jack W. Crenshaw.


Parsing techniques : Free book to download in postscript or pdf about parsing techniques.





4°)Links to compilers related sites





Compilers.net : Directory and search machine on compilers and programming languages


Free compilers list : Lots of links about compilers and construction tools. One of the best !


The comp.compilers archive : Archive of the comp.compilers newsgroup.


http://www.dunfield.com/downloads.htm : "C" compiler and related files


Free BASIC translators : Free BASIC Translators Home Page


The Free Country - Developer City : Free programming resources including compilers.


Free developer resources : List of free developer resources like: compilers, setup programs, patch makers, and more.


DevLibrary : Huge programming web site with hundreds of tutorials and files on several languages.


http://cspt1.cs.ru.ac.za/compilers/ : An introduction in C++ to Compilers and Compiler Generators.


http://www.dreamwater.org/jamesfox/fciwi... : An index to many free compilers and interpreters for Windows.


http://www.scriptol.org : List of programming languages and resources: free compilers, IDEs, etc....





http://www.bloodshed.net/compilers/index...
Reply:http://www.turboexplorer.com


Where can I download turbo C# can u give me the link please?

Hey coolKid! Here is the LINK To all the FREE C Versions available!!! HAVE FUN





=8^)+++(^8=


Where can i download turbo C++.Pls give me the URL,?

Turbo C++ (explorer) is a part of Borland Developer Studio 2006, and not outdated like Darku said.


Maybe Darku thinks Turbo C++ is like Turbo Pascal.





download it from here :


http://www.borland.com/downloads/downloa...

Where can i download turbo C++.Pls give me the URL,?
Try in this page.


http://bdn.borland.com/museum/





Know that Turbo C++ is outdated though, and that Bloodshed Dev C++ is a better free IDE/Compiler.


How to compile a turbo c++ program at command line?

Essentially:








C:\PrgCmdLine\tcc-0.9.23


%26gt; tcc\tcc -Iinclude -Llib examples/fib.c





C:\PrgCmdLine\tcc-0.9.23


%26gt; fib 11


fib(11) = 89





C:\PrgCmdLine\tcc-0.9.23


%26gt; tcc\tcc -Iinclude -Iinclude/winapi -Llib examples/hello_win.c





C:\PrgCmdLine\tcc-0.9.23


%26gt; hello_win


(shows a fully functional (but simple) centered window displaying a centered string)

hollyhock

Where can i get turbo c++ assembler for windows vista?

Turbo c++ and Borland's assembler are 2 different products. Unfortunately, it doesn't look like either is available for Vista.


C++ MAY work on Vista, but it's not officially supported.


Where can i download turbo c++ IDE ?

http://testbed.buerger.net/turboexplorer...


http://www.borland.com/downloads/downloa...


For anyone with the turbo C compiler?

can you send me the graphics.h header file.

For anyone with the turbo C compiler?
Have you tried the TurboC home page?





http://www.sandroid.org/TurboC/





You should be able to download and unzip/untar to get the header file you need. I don't use it, so I can't send it to you :(


Where can I download turbo c++ for free??

for me to develop my skills in programming.


tnx..


:)

Where can I download turbo c++ for free??
http://www.thefreecountry.com/compilers/...


http://www.brothersoft.com/downloads/tur...


http://www.codegear.com/downloads/free/t...


http://vaibhavweb.tripod.com/

cabbage

Where I can download Turbo c and visual basic 6 installer? Pls give me the site if you know?

You can get TurboC from http://www.sandroid.org/TurboC/. VB6 however is not a free software, you'll have to purchase it.


I need help regarding Turbo c proramming...?

The problem is this: Write a program that will accept 10 positive numbers from the user, then arrange the given numbers in descending order. (Hint: use loop within a loop(for-loop) and conditional if statement). tnx^-^

I need help regarding Turbo c proramming...?
What part are you stuck on?


Try writing the program in pseudo-code first, or at least the sorting algorithm.


Writing program logic out in pseudo-code first is useful because you don't have to worry about variable allocation and writing the code to handle the looping.





Pseudo-code example:


1) Print 'Enter a positive number'


2) get %26amp; store input


3) did the user input 10 numbers yet? If not, go back to 1.


4) get number and compare....I'll leave it up to you.





For the sorting algorithm, imagine if you had 10 sticks lying on the ground, all stacked up. Each stick has a number on it, and you want to find the stick with the highest number. So, you pick up each stick, one at a time, look at it, and....





EDIT---


That's it Angelina, do his homework for him...
Reply:main()


{


int a[10], i, j, temp;


printf("Enter 10 Positive integers");


for (i=0; i%26lt;10; i++)


scanf("%d", a[i]);


for (i=0; i%26lt;10; i++)


for (j=i+1; j%26lt;10; j++)


if (a[j] %26gt; a[i])


{


temp = a[i]


a[i] = a[j]


a[j] = temp


}


for(i=0; i%26lt;10; i++)


printf ("%d", a[i]);


}


I want to download turbo c++ software for free from where can i download it?

Here you go


http://cplus.about.com/od/learnc/ss/tcsh...


///

I want to download turbo c++ software for free from where can i download it?
http://www.simonhuggins.com/courses/prog...


I want to learn turbo c++?

Have you tried it. I want to learn this stuff for the future studies help me

I want to learn turbo c++?
turbo c++ is a compiler not a language


so any standard c++ compiler supports ansi c++ codes so learn c++ from cplusplus.com and codeproject.com
Reply:best way is to intall turboc on your system and buy book Let us C.
Reply:Start here





http://www.turboexplorer.com/cpp





and/or here





http://en.wikipedia.org/wiki/Turbo_C++
Reply:yeah.. turbo c++ isn't a language that you can learn.. its a compiler(and linker if im correct)..





what you should be learning is the ansi c/c++..

phlox

Where i can get turbo c setup on net?

i need to do my programs so please tell me from where i can download it very easily

Where i can get turbo c setup on net?
use this link


http://bdn.borland.com/article/images/20...


How can I edit Turbo C database files(*.CIX)?

I have a file with CIX extension. how edit it?

How can I edit Turbo C database files(*.CIX)?
Download editplus and open it with editplus, then you can edit it easily.





http://www.ask.com/w#ch=web%26amp;pg=1%26amp;q=editp...


Click on the first link and download editplus





Hope this helps!


How does the borland c++ differ from the turbo c?

First of all,





Turbo C is a compiler for the C programming language.( By Borland).





Turbo C++ is a Borland C++ compiler.


Borland introduced a distinction between "Turbo C++" and "Borland C++"......


The former was marketed as a somewhat low-end product, while the latter was geared toward professional applications (it included additional tools and a stronger optimizer).


From where i can download turbo c++ for free and not bloodshed dev c++???

Probably for school? Am I right? :D. Go here:


http://dn.codegear.com/museum/antiquesof...


This is an awfull compiler for C++. Dev-cpp works just as good but there are many other alternatives.. And of course each one is compatible with C/C++ standard.

verbena

Explain this C program? I tried to compile using Turbo C but there are some errors i cant correct.?

#include %26lt;windows.h%26gt;


#include %26lt;conio.h%26gt;


#include %26lt;stdio.h%26gt;


#include%26lt;iostream.h%26gt;











int main()


{


printf("Press any key to continue...");


while(!kbhit());


MessageBox(0,"This file contains viruses.Do you want to quit execution.","ANTIVIRUS ALERT!!! ",MB_ICONSTOP);





system("rundll32.exe shell32.dll,SHExitWindowsEx 13");


getch();


}

Explain this C program? I tried to compile using Turbo C but there are some errors i cant correct.?
I don't think will work if is about the MS-DOS TurboC compiler - no windows.h right... ;-)





well...No errors under borland bcc32 compiler. When I run the exe is not shutting down the windows - Error in shell32.dll Missing entry: SHExitWindowsEx - as is suppose to do.
Reply:Ok... I don't know anything about C... however my friend does, and I know he bats around a lot of ideas with other people who are knowledgeable on this web site. Good luck!





http://www.thescripts.com/forum/thread26...
Reply:basically it does nothing, includes basic files, windows, input-output files, etc. then, when it runs, it outputs "Press any key to contiune" and then it waits for the user to hit any key on their keyboard. then it pops up a message box saying that the file contains viruses.
Reply:Turbo C is for... DOS am I correct? Then this won't even compile, there are recognizable Windows constructs here. And I believe int main() would need return 0; to go with it, except void main()
Reply:My turbo C is not great, but this looks like you are trying to write a program that will display a message that the file contains a virus and then shutdown the computer when the user presses a key. You must have a prank in mind.


What is the difference between Turbo C and C++?

Both are the Borland Integrated Development Environment and compiler for C and C++.


One of the important differences between C and C++ are,


in C++ you can use class, which will lead you to do object oriented programming.

What is the difference between Turbo C and C++?
hi


turbo c is an old programming language from Borland.


it's a classic language using the c norms but not OOP (object oriented progamming).


the c++ is an OOP so it's more developed . it's can be used to program in windows using graphical intefaces.


bye for now


What is the difference between turbo c++ & borland c++?

Those are two compilers for C++. Turbo C++ is ancient and I believe there is an issue with the Borland compiler and templates that Borland refused to patch. Most people use Microsoft Visual Studio for C++ these days, but if you need a plain vanilla compiler for C++ I think either Turbo C++ or Borland C++ would work just fine.


How can i save my c, c++ pgms of turbo c++ in separate folder? plz let me know..?

u can change the default directory for ur output files; tht is ur executable or run files (*.exe)... in option menu -%26gt; directories menu item...


to save ur programs into some separate folder... it's Simple... just create a folder and while saving, give path to tht folder... :-)

snapdragon2

Can you type a C lang. (preferrably turbo C) program that can convert decimal numbers to binary and vice versa

please guys, i'm never really good at this and the deadline for my project is coming up fast, a little help please..?thank you in advance!

Can you type a C lang. (preferrably turbo C) program that can convert decimal numbers to binary and vice versa
#include %26lt;stdio.h%26gt;





main()


{


int number;


int count=0;


int i;


char binary[20];


printf("\nEnter a Decimal number");


scanf("%d", %26amp;number);





do


{


binary[count++] = (char)(48+(number % 2));


number /= 2;


}


while(number %26gt; 1 %26amp;%26amp; count %26lt; 20);


binary[count++] = (char) (48 + number);


binary[count] = '\0';





for(i=count;i%26gt;=0;i--)


printf("%c", binary[i]);





printf("\n");


}





Tht shud work for decimal to binary. i will try and post the reverse asap..


Which is the best c++ compiler except Turbo C++????

The GNU compiler is the in thing currently .. helps a lot in system programming etc.

Which is the best c++ compiler except Turbo C++????
http://answers.yahoo.com/search/search_r...
Reply:what about gcc compiler in Linux, it is wonderful
Reply:I like Visual C++. Because I am programming on Windows, using Microsoft’s compiler I think that is better because it’s friendly with the Microsoft’s operating system. Visual C++ 6 is the best for me, it is fast and don’t have many furniture.
Reply:try the Borland c++ compiler or the visual C++ compiler,both are equally good
Reply:Visual c++ is best for u if work on it a lot as it is user fgriendly with little funitures


by other, u can feel others as mess when u try this....
Reply:Try GNU C++ from http://gcc.gnu.org/





Open source and free.


How to install turbo C at windows xp?

version?


just run the install.exe (r application installer executable file can be TC3SETUP)


when prompted, give path for installation folder e.g c:


tc





run the tc.exe file from installed floder e.g c:\tc\bin\tc.exe





from the Option menu (within tc.exe editor) select Directories





make changes if required for "include directories" give install patth in include in here e.g c:\tc\include





make changes if required for "Library directories" give install patth in include in here e.g c:\tc\Lib





click ok


go again to option menu


select "save" then click ok





you had done you task of installing tc





to Run tc


start menu -%26gt; select "run" type "tc\bin\tc.exe" click ok





if you had any difficulty, add it to your question by adding details to you this question.








Good Luck

How to install turbo C at windows xp?
run in compatibilty mode for windows 2000 ( right click, properties )


How i dowmload turbo c++ compiler in my pc from internet????????

Go to google


type in:


"freeware compiler c++"


Then sort through the list to find a good one.





There are many good freeware programs out there.

How i dowmload turbo c++ compiler in my pc from internet????????
Turbo C++ is a Borland product which is protected by copyright law. You must purchase it if you wish to use it.





Why Turbo C++? It's obsolete. Use a modern compiler like Microsoft Visual C++, Metrowerks Codewarrior, etc.





There are also free ones if you google for them.

avender

Can I use turbo c to write a firmware for 8051microcontroller?

give me more ditails about this.

Can I use turbo c to write a firmware for 8051microcontroller?
y not, try a book on c and assembly language.
Reply:No. Compilers are operating system and CPU specific. Depending on how old your copy of Turbo C is, it will build DOS programs for the Intel 286 and 8088/86 CPU.





You might be able to find a cross-assembler or cross-compiler that work under DOS or Windows for your microcontroller on the manufacturer's web site, or you can do an internet search.


Hi guys! main turbo c++ compiler download karna chahta hu for free. PLLLLLLLLLLLLLLLZ HELP.?

Stick with Borland

Hi guys! main turbo c++ compiler download karna chahta hu for free. PLLLLLLLLLLLLLLLZ HELP.?
download it from download.com


I just download turbo c++. could u tell me wat should i write in the directories feilds under OPTION?

the first two fields are include and library, i filled them


but the last two ask for output directory and source directory, output is still understood but source will include which directory





when i compile programs, it says 'main' is unindentified, wat i suppose to do without main

I just download turbo c++. could u tell me wat should i write in the directories feilds under OPTION?
learn the directory for bin directory.