Write a program to convert inches into centimeters in C.

#include<stdio.h>
#include<conio.h>
void main()
{
    float inche;
    printf("Enter the inche(s) = ");
    scanf("%f",&inche);
    inche=inche*2.54;
    printf("Centimeter is = %f",inche);
getch();
}

















OUTPUT :-

Previous Post
Next Post