Computer Science, asked by divyanshgangude, 7 months ago

Write a program to input two integers through Terminal Window and find their Quotient and Remainder.

Answers

Answered by kotaravi54321
1

Answer:

Program to Compute Quotient and Remainder. In this program, the user is asked to enter two integers (dividend and divisor). They are stored in variables dividend and divisor respectively. printf("Enter dividend: "); scanf("%d", &dividend); printf("Enter divisor: "); scanf("%d", &divisor

Similar questions