#include <stdio.h>
void main()
{
float centimeters,inches,feet;
centimeters=23;
printf(“\n Enter the number of Centimetres: ”);
//scanf(“%f”,¢imeters);
inches = centimeters/2.54;
printf("\n the conversion in inches is %f",inches);
feet= inches/12;
printf(“\n The Conversion in feet is: %f”,feet);
}