# include int main ( ) { int a; int b; int c; int min; printf ( "Enter three integers: " ); scanf ( "%i%i%i", &a, &b, &c ); // // Find the minimum of A and B. // if ( a < b ) { min = a; } else { min = b; } // // Now find the minimum of min(A,B) and C. // if ( c < min ) { min = c; } printf ( "The minimum of %i, %i and %i is %i\n", a, b, c, min ); return 0; }