Hello World in C language

#include <stdio.h>

int main() {
    // Step 1: Include the necessary header file for input and output operations
    // This line includes the standard input/output library for C

    // Step 2: Define the main function, the entry point of every C program
    int main() {

        // Step 3: Use the printf function to print the string "Hello, World!" to the console
        printf("Hello, World!\n");

        // Step 4: Return 0 to indicate successful execution of the program
        return 0;
    }
}