comment in c language

#include <stdio.h>

int main() {
    // This is a simple C program
    printf("Hello, World!\n"); // Print a message to the console

    /*
    This is a multi-line comment
    It provides additional information about the code
    */

    return 0; // Indicate successful execution
}