Samiul_Islam_Abir

1

Jun 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b,add,sub,mul,div,rem;
  5.     printf("Enter two number:");
  6.     scanf("%d%d",&a,&b);
  7.     add=a+b;
  8.     sub=a-b;
  9.     mul=a*b;
  10.     div=a/b;
  11.     rem=a%b;
  12.     printf("Addition is %d\n",add);
  13.     printf("Subtraction is %d\n",sub);
  14.     printf("Multiplication is %d\n",mul);
  15.     printf("Division is %d\n",div);
  16.     printf("Reminder is %d\n",rem);
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment