Posts

Showing posts from January, 2014
C – Basic Program                                                                                               We are going to learn a simple “Hello World” C program in this section. Also, all the below topics are explained in this section which are the basics of a C program. 1. C Basic Program:   #include <stdio.h> int main() {      /* Our first simple C basic program */      printf("Hello World! ");      getch();      return 0; } Output: Hello World! Explanation for above C basic Program: Let’s see all the sections of the above simple C program line by line. S.no Command Explanation ...