Advertisement
salmancreation

Sum in C Programing by Salman to Manik

Aug 11th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2.     int main()
  3.     {
  4.         int a,b,sum;
  5.  
  6.         scanf("%d%d",&a,&b);
  7.  
  8.         sum=a+b;
  9.  
  10.         printf("Your Answer : %d",sum);
  11.  
  12.         return 0;
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement