Okay, I have been searching the web for some time now on what IDE to use for learning C.
I have been quite frustrated by the fact that other simple IDE such as dev c++ does not have a function that disables auto exit in cmd. Have tried codeblocks but I am now using visual studio 2013, and it works brilliantly by pressing Ctrl + f5.
Through googling and searching youtube I know that you must :
create empty project -> add new file -> rename to c -> change the compiler ( -> then disable warning for 4996...)
To skip to the point:
I want to create many, VERY simple programs as I will be learning C in my breaks. It seems very inefficient for me to create a project for codes less than 10 lines and repeat the same process...
If that is the only method, could you please suggest a very simple IDE for programming in C (none of that project business, just create .c files) that also prevents cmd to exit automatically? I do not want to add system("pause") or getchar() to the end of my main as suggested by many online - it seems lousy.
Help would be very much appreciated.