C Programming Code Examples C > Conversions Code Examples Convert inches to yards, feet, and inches Convert inches to yards, feet, and inches #include <stdio.h> void main() { int inches = 0; int yards = 0; int feet = 0; const int inches_per_foot = 12; const int feet_per_yard = 3; printf("Enter a distance in inches: "); scanf("%d", &inches); feet = inches/inches_per_foot; yards = feet/feet_per_yard; feet %= feet_per_yard; inches %= inches_per_foot; printf("That is equivalent to %d yards %d feet and %d inches.\n", yards, feet, inches); }