Im trying to create a hello world! console application using C and got Visual Studio Express 2012 to be able to compile it. When I add in my code:
#include <stdio.h>
void main()
{
printf("Hello World!\n");
}
and try to compile it, the application opens up in console but shuts itself down under a second.
Im more of a java and web developer, but since Java borrowed heavily from C Im thinking I need some kind of Read line after
the printf()?