Basics of a C programming

Beginning with C programming
 

Structure of a C program 
we can formally assess the structure of a C program. By structure, it is meant that any program can be written in this structure only. Writing a C program in any other structure will hence lead to a Compilation Error.
The components of the above structure are: 

Header Files Inclusion: The first and foremost component is the inclusion of the Header files in a C program. 

A header file is a file with extension .h which contains C function declarations and macro definitions to be shared between several source files.

Some of C Header files: 
>stddef.h – Defines several useful types and macros.
>stdint.h – Defines exact width integer types.
>stdio.h – Defines core input and output functions
>stdlib.h – Defines numeric conversion functions, pseudo-random network generator, memory allocation
>string.h – Defines string handling functions
>math.h – Defines common mathematical functions 

Main Method Declaration: The next part of a C program is to declare the main() function. The      syntax to declare the main function is:

Syntax to Declare the main method: 

  1. Int main ()
  2. {}

Variable Declaration: The next part of any C program is the variable declaration. It refers to the variables that are to be used in the function. Please note that in the C program, no variable can be used without being declared. Also in a C program, the variables are to be declared before any operation in the function.
Example: 
 
  1. int main()
  2. {
  3.     int a;
  4. .
  5. .

Body: The body of a function in the C program, refers to the operations that are performed in the functions. It can be anything like manipulations, searching, sorting, printing, etc.
Example: 
 
  1. int main()
  2. {
  3.     int a;

  4.     printf("%d", a);
  5. .
  6. .

Return Statement: The last part of any C program is the return statement. The return statement refers to the returning of the values from a function. This return statement and return value depend upon the return type of the function. For example, if the return type is void, then there will be no return statement. In any other case, there will be a return statement and the return value will be of the type of the specified return type.
Example: 
 
  1. int main()
  2. {
  3.     int a;

  4.     printf("%d", a);

  5.     return 0;
  6. }


Writing a first program.

  1. #include <stdio.h>

  2. Int main ()
  3. {
  4.    printf("This is a basic C program : )");
  5.    return 0;
  6. }

Comments

Post a Comment