KM TO CM

#include<stdio.h>
#include<conio.h>
void main()
{
float km,m,cm;
printf("Enter distance in km:\n");
scanf("%f",&km);
cm=km*100000;
printf("Distance in centimeters is%f\n",cm);
getch();
}








Comments

Popular posts from this blog

volume of sphere