0
3.0kviews
Write a C program to convert weight in pounds to KG
1 Answer
0
513views

Explanation:-

  • Take a input from the user of weight in pounds and store it in a variable pound.
  • Initialize a variable KG with value 0.453592.
  • Print the output weight in KG as KG = 0.453592 * pound.

Code:-

#include<stdio.h>
#include<conio.h>
int main()
{
 const float KG=0.453592;
 float pound;
 printf("Enter weight …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.