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