New project / Console application Win32 / Empty project.
Add a file called "hello.c" (it is important that it .c)
Enter the basic hi-world:
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }
Compile, execute ... PROFIT!
source share