WAP to convert weight from kg to pound
Write a program that requests a user to enter weight in kg. The program converts it in pounds (pound = 2.2*kg). /* Write a program that requests a user to enter weight in kg. The program converts it in pounds (pound = 2.2*kg) */#include<stdio.h> #include<conio.h>int main() { float kg,po; printf("Enter weight in kg:\n"); scanf("%f",&kg); ...