Open your favorite IDE, then write a C program to print Hello World.
Save the file as helloworld.c or any other file name you like.
#include <stdio.h> int main(void) { printf("Hello World"); return 0; }