#include int main() { int total, inches, feet; printf( "Enter total inches: " ); scanf( "%d", &total ); feet = total / 12; inches = total % 12; printf( "%d inches is %d feet %d inches\n", total, feet, inches ); return 0; }