How to develop C programmes without an IDE in Windows?

前端 未结 11 1322
耶瑟儿~
耶瑟儿~ 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条回答
  •  暖寄归人
    2021-02-09 19:25

    I don't know what you mean. You want to write C programs in a text editor an then, compile?? Ofcourse, you CAN do that:

    1- Write a C code
    2- Get a compiler such as gcc (there is a windows version)
    3- Compile it
    4- Run it from console
    

    But, I am not sure if that is what you want to know.

提交回复
热议问题