Hello, world!

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!"); // Calling a function from `stdio.h`
    return 0; // Saying to the computer that the program exited successfully
}

2025-07-21 edit: Yeah, I know. For a first post this isn’t a super creative one. Kinda generic and boring.