Write the first C Program and understand the structure of the program.

Posted on: Fri Sep 08 2023 05:30:00 GMT+0530 (India Standard Time)

Practice Exercise 1

// Write the first C Program and understanding the structure of the program.

#include <stdio.h>

int main()
{
    printf("Welcome to the Computer Programming Lab");
    return 0;
}