#include <stdio.h> // Import the Standard Input Output library int // GCC compiler require main() to return an intmain() // main function to be executed when program runs{ printf("Hello, world!\n"); // Print "Hello, world!" to the user, with newline return 0; // Terminate the program with status 0}