How can i Compile a C program on Dos prompt using tcc and tc
问题 I want to compile c program on dos prompt using tcc as well as tc without using c editor. please give the full procedure. 回答1: 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 回答2: you can run code without using an editor by using tcc -run - Using