Q. The distance between two cities (in km.) is input through the keyboard. Write a program to convert and print this distance in meters, feet, inches and centimetres. Sol 1 : #include <stdio.h> int main() { int m, cm; float km, f, i; printf("Distance between two cities (in km) = "); scanf_s("%f", &km); getchar(); m = 1000 * km; cm = 100 * m; i = cm / 2.54; f = i / 12; printf("This distance in \nmeter = %d \t centimeter=%d \t inch = %f \t feet = %f ", m, cm, i, f); getchar(); return 0; } Output : Distance between two cities (in km) = 25 This distance in meter = 25000 centimeter=2500000 inch = 984251.937500 feet = 82020.992188 Sol 2 : Hint: ...