Praveen | Typing Speed Test is a very useful Software available for free Download.

C Programs to Addition

      C program to perform basic arithmetic operations i.e. Addition, Subtraction, Multiplication and Division into minimum two numbers. Numbers are assumed to be integers or float (Real) and will be entered by the user or making a constant it means values assigned in the programs.


  C Programming Code for Addition

      #include<conio.h>
      #include<stdio.h>

      void main()
      {
         int a,b,c;
         printf("\n Enter the first number ");
         scanf("%d",&a);
         printf("\n Enter the second number ");
         scanf("%d",&b);
         c=a+b;
         printf("\n Sum=%d",c);
         getch();
      }


Output:-