#include <stdio.h> // Preprocessor directive to include the standard I/O library int main(void) { printf("Hello, world!\n"); // Call to the standard library function return 0; // Exit status to the operating system }