HOW DOES A BASIC C PROGRAM LOOK LIKE????

HOW DOES A BASIC C PROGRAM LOOK LIKE????



  1. Every C program looks somewhat similar.
  2. It always begins with a header file. Which are-- #include<stdio.h>, #include<conio.h>, #include<math.h> etc.
  3. It is then followed by a main function from where the main programming starts.
  4. We then put a parentheses { .
  5. Then we declare variable types. It could be an integer,char,float etc.                 Eg- int a;        char a;        float a;
  6. Then we write our main logic part with proper syntax and steps.
  7. printf is used for instructing the computer to give an output to the user and scanf is used to take inputs from the user.
  8. Every executable statement is ended using ;

  1. Then we end our program with a closed parentheses }.                                                                                                                                    A ROUGH VIEW OF A C PROGRAM                                                                                                                              #include<stdio.h>                                                                          void main( )                                                                                   {                                                                                                         int a=10;                                                                                       printf("%d",a);                                                                             }                                                                                                                                                                                                                OUTPUT : a=10                                                                                                                                                                                    NOTE- THIS IS JUST AN OVER-VIEW!! IN DEPTH WE WILL GO ONE BY ONE.


        

No comments:

Post a Comment