Find Quotient and Remainder - Basic C Programming

Breaking

BANNER 728X90

Monday, December 12, 2016

Find Quotient and Remainder

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;
}
Output
Enter dividend: 25
Enter divisor: 4
Quotient = 6
Remainder = 1
In this program, user is asked to enter two integers (dividend and divisor) which is stored in variable dividend anddivisor respectively.
Then the quotient is evaluated using division / operator and stored in variable quotient.
Similarly, the remainder is evaluated using modulus % operator and stored in remaindervariable.
Finally, the quotient and remainder are displayed using printf() function.

No comments:

Post a Comment