How to develop C programmes without an IDE in Windows?

前端 未结 11 1355
耶瑟儿~
耶瑟儿~ 2021-02-09 18:52

I want to have a deeper understanding of how C programmes are run.

But IDEs stops us from doing that.

So is it possible that I manually set up the environment an

11条回答
  •  旧时难觅i
    2021-02-09 19:06

    Here is some simple step that would make you to compile and run c program without IDE

    1 - install the TCC (Turbo C compiler)

    2- open Notepad and write C code

    3 - save as a.c in C:\TC\BIN

    4 - then open CMD

    5 - compile c code by "tcc a.c"

    6 - finally run "a.exe"

提交回复
热议问题