The distance between two cities (in km.) is input through through the keyboard .Write a program to convert and print this distance in meters , feet , inches , and centimeters.
byHarshvardhan Tandon•
0
#include<stdio.h> void main() { float km,meter,feet,inch,cm; printf("Enter a distance in km="); scanf("%f",&km);