Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- float km,m;
- printf("Enter the number of m ==");
- scanf("%f",&m);
- km=m/1000;
- printf("The kilometer is %0.4f",km);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement