Advertisement
fahim-ahmed2019

tutorial

Oct 29th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a,b,sum;
  5. float avg;
  6. printf("press any 2 integer number\n");
  7. scanf("%d %d",&a,&b);
  8. sum=a+b;
  9. printf("sum of two integer= %d\n",sum);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement