Header add

 In this example, you will learn to find the quotient and remainder when an integer is divided by another integer.

Program to Compute Quotient and Remainder


#include <stdio.h>
int main() {
int dividend, divisor, quotient, remainder;
printf("Enter dividend: ");
scanf("%d", &dividend);
printf("Enter divisor: ");
scanf("%d", &divisor);
// Computes quotient
quotient = dividend / divisor;
// Computes remainder
remainder = dividend % divisor;
printf("Quotient = %d\n", quotient);
printf("Remainder = %d", remainder);
return 0;
}
view raw compute.c hosted with ❤ by GitHub


Program to Compute Quotient and Remainder




Previous Post Next Post