Writing and Executing the first C program

Following is first program in C #include <stdio.h> int main(void) {     printf(“Hello World”);     return 0; } Let us analyze the program line by line. Line 1: [ #include <stdio.h> ] In…

Share Button
error: Content is protected !!