fahim-ahmed2019

reminder

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