Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<iostream.h> #include<conio.h> void main() { float m; clrscr(); cout<<"\nEnter meter:-"; cin>>m; float km=m/1000; cout<<"Killometer="<<km; getch(); }
0 Comments