Breaking

Sunday, February 17, 2019

#1: C Program To find The sum of Two Numbers

      Addition of Two Numbers.    

       Source code:
    
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>
 int main()
{
   int a, b, sum; 
   printf("\nEnter two no: ");
   scanf("%d %d", &a, &b); 
   sum = a + b;
   printf("Sum : %d", sum);
   return(0);
}

     Output Console:

No comments:

Post a Comment

Popular Posts

Post Top Ad

Your Ad Spot

Pages