MinGW Writing `hello world` - learnclang/1-helloworld GitHub Wiki

For our first program, let's create a file called hello_world.c and type the following:

#include <stdio.h>

int main()
{
    printf("hello, world\n");
}

[Next: Compilation ->](MinGW Compilation)

⚠️ **GitHub.com Fallback** ⚠️