How to develop C programmes without an IDE in Windows?
问题 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 and write code in text editors, and finally run it in a prompt? If the answer is yes, how? 回答1: As others have said, install MinGW (I'm assuming you are using Windows) and put its bin directory on your path. Open a command line windows, and create a file with a text editor, such as notepad - call it foo.c: #include <stdio.h> int main()