logo
logo
AI Products 
Leaderboard Community🔥 Earn points

C Program to Compute Quotient and Remainder

avatar
Tech Mekrz
collect
0
collect
0
collect
1
C Program to Compute Quotient and Remainder

Program to Compute Quotient and Remainder

int dividend, divisor, quotient, remainder;

quotient = dividend / divisor;

remainder = dividend % divisor;

In this program, user is asked to enter two integers (dividend and divisor) which is stored in variable dividend and divisor respectively.

Then the quotient is evaluated using division / operator and stored in variable quotient.

collect
0
collect
0
collect
1
avatar
Tech Mekrz