Documentation
#include <stdio.h>: This is a preprocessor directive that tells the C compiler to include the standard input/output library (stdio.h). This library contains the declaration for theprintf()function used to display output.int main(): Themain()function is where the execution of any C program begins. Theintindicates that the function will return an integer value upon completion.printf(\"Hello, World!\\n\");: Theprintf()function prints the text enclosed in the double quotes to the standard output (usually the console). The\\nis an escape sequence that moves the cursor to a new line after printing.return 0;: This statement ends themain()function and returns the integer value0to the operating system, which indicates that the program executed successfully.{and}: These curly braces define the beginning and end of themain()function\'s body.