I want to compile c program on dos prompt using tcc as well as tc without using c editor. please give the full procedure.
+2
A:
I would look at the TCC documentation, specifically the quick start guide, provided on the TCC web page. Assuming you have some source code already, a compilation is as simple as
tcc -o executable.exe sourcefile.c
You can also run a C file directly with the -run
option, as in
tcc -run sourcefile.c
Tim
2009-11-24 04:09:07
Oh yes, those compilers had the option to compile to memory and run the executable without writing it to disk.
Alexandru
2009-11-24 12:28:21