Computer Science, asked by Anonymous, 3 months ago

answer of computer
first read my questions then answering

don't spam X X X ​

Attachments:

pankajvaishnav10: ok

Answers

Answered by plaannet24
3

Answer:

c programming

Explanation:

C program to convert centimeter into meter and kilometer

*/

#include <stdio.h>

int main()

{

float cm, meter, km;

/* Input length in centimeter from user */

printf("Enter length in centimeter: ");

scanf("%f", &cm);

/* Convert centimeter into meter and kilometer */

meter = cm / 100.0;

km = cm / 100000.0;

printf("Length in Meter = %.2f m \n", meter);

printf("Length in Kilometer = %.2f km", km);

return 0;

}

Answered by sharonmarysabu41492
1

c programming

hope it helps you

Similar questions