Advertisement
fahim-ahmed2019

quotient

Oct 7th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. { int num1,num2,quotient;
  4. printf("Enter two number");
  5. scanf("%d %d",&num1,&num2);
  6. quotient=num1/num2;
  7. printf("%d",quotient);
  8. return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement