Computer Science, asked by poulami26, 8 months ago

develop a c program to print quotient and remainder ..
please click a photo of your answer​

Answers

Answered by harshad2240
0

Answer:

printf("Enter dividend: "); scanf("%d", &dividend); printf("Enter divisor: "); scanf("%d", &divisor); Then the quotient is evaluated using / (the division operator), and stored in quotient . quotient = dividend / divisor; Similarly, the remainder is evaluated using % (the modulo operator) and stored in remainder

Similar questions