1/8/2024, 4:43:54 PM

Hello World

It’s a time honored programming tradition to start off with a Hello World, so here is the first Hello World program I wrote 12 years ago in school on an XP machine with the legendary TurboC IDE.

#include <stdio.h>

int main() {
    printf("Hello World");
    return 0;
}
#others