Program for addition of two number

Program for addition of two number 

#include<stdio.h>
#include<conio.h>
int main()
{
  int a, b, c; 
  clrscr();
  printf ("enter two number : ");
  scanf ("%d%d",&a, &b); 
   c=a+b;
   printf ("addition of two numbers = %d",c); 
   return 0;
  getch();
}

Comments

Popular posts from this blog

Program for find average of five numbers

program for sorting array using selection sort technique || in c programming language

Program to calculate the sum of given number using array