Hello, world!

Jul 13, 2025 | Aug 10, 2025

First post! Hello, world in C!

// Including the header file INPUT/OUTPUT
#include <stdio.h>

// Creating the main function
int main(void)
{
    printf("Hello, world!\n"); // Calling a function from `stdio.h`
    return 0; // Saying to the computer that the program exited successfully
}

Yeah, I know. For a first post this isn’t a super creative one. Kinda generic and boring.