#include main() { int feet, inches; printf("Enter number of feet: "); scanf("%d", &feet); inches = feet * 12; printf("%d inches", inches); }