Click here to Skip to main content
15,891,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HELLO..
what is the procedure of installing turbo c in fedora operating system?
thnx
Posted
Comments
Sunny s 23-Sep-10 4:36am    
plz give me ans ...

Why do you want to do that?
I mean you might install gcc if it isn't already provided by your Fedora distribution.

If you really need it, you may install in in DOSBox [^].
:)
 
Share this answer
 
Comments
Sunny s 23-Sep-10 5:27am    
thanx for help..
but I want to compile C program's...
CPallini 23-Sep-10 5:32am    
gcc does compile C programs.
Archit9373284448 13-Oct-10 11:39am    
u can go it by 2 methods,
1 . using make
2. using gcc command line

both the above options does same things, but make is more automatic.

how to compile :
on terminal type "make File_Name"
while compiling with "make", be sure that u not to write file extension.

WRONG : make File_name.c
Right : make file_name

when u compile using this method u'll get output as same name.

2. Using GCC

GCC -g -o input_file.c out_file
input_file.c : source file
out_file : output file
ya i think the same GCC is more powerful then TC.
TC has some restrictions ,
if code is too long say more than 1500 lines , TC fails to manage.

GCC is the best,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900