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…
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…