I'm attempting to compile a simple hello world program in c with lcc-win32/wedit, and i'm a little unfamiliar with windows c programming.
#include <stdio.h> int main(void){ printf("hellow\n"); return 0; }