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
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"