0
2.3kviews
Write a C program to convert weight in pounds to KG
1 Answer
written 2.5 years ago by |
Explanation:-
Code:-
#include<stdio.h>
#include<conio.h>
int main()
{
const float KG=0.453592;
float pound;
printf("Enter weight in pounds:- ");
scanf("%f", £);
printf("Weight in kilograms is %f\n", pound*KG);
getch();
}
Output:-