 #include <iostream>
    void main();
    { 
	float  centimeters,inches,feet;
	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);

}

