/* Quotient and Remainder */ #include int main(void) { int first, second, quotient, remainder; printf("Enter two integers> "); scanf("%d%d", &first, &second); quotient = first / second; remainder = first % second; printf("%d / %d = %d\n", first, second, quotient); printf("%d %% %d = %d\n", first, second, remainder); return (0); }