#include<stdio.h>
int main()
{
float m,km;
printf("Enter the value of m");
scanf("%f",&m);
km=1000*m;
printf("calculate of %f",km);
return 0;
}
0 Comments