Showing posts with label Conversion of Centimeters to Inch Program. Show all posts
Showing posts with label Conversion of Centimeters to Inch Program. Show all posts

Jan 30, 2013

Converson of Centimeters to Inch Program

/*Conversion of Centimeters to Inch Program*/

#include"stdio.h"
#include"conio.h"
void main();
{
clrscr();
float Centimeter,Inch;
printf("Enter the value of Centimeter");
scanf("%f",&Centimeter);
Inch=Centimeter/2.54;
printf("The Inch Value is=%.2f",Inch);
getch();
}

Popular Posts