How to develop C programmes without an IDE in Windows?

前端 未结 11 1490
耶瑟儿~
耶瑟儿~ 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:08

    Of course. You'll need something like MinGW compilers set to compile your application (or you could use the IDE-provided compiler). Then just use CMD and execute appropriate compile commands.

    Actually, every IDE provides just more easier way to do the same compilation.

提交回复
热议问题