Question
Division of Two Numbers
Sample TestCase Expected Output
1. 12 20
2. 8 32
Answer
#include<stdio.h> int main() { int num1,num2,quot;
scanf("%d %d", &num1, &num2);
quot = num1 % num2;
printf("%d",quot);
return 0;
}
This comment has been removed by a blog administrator.
ReplyDelete