 #include <stdio.h>
    void main()
    { 
	float  centimeters,inches,feet;
        centimeters=23;   
	printf(“Enter the number of Centimetres: ”)
	//scanf(“%f”,&centimeters);

        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);

}

