Header Ads Widget

Responsive Advertisement

how to change kilometer to meter in c language

 #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;


}


Post a Comment

0 Comments