#include #include int main(int argc, char** argv) { double kg; double pounds; printf("Enter weight in kilograms: "); scanf("%lf", &kg); pounds = kg*2.2046626; printf("In pounds this is %f (lb) \n", pounds); system("pause"); }