/*height and weight program*/ #include main() { int weight; float height; float shoe; weight=200; height=5.10; shoe=11.5; printf("%d %f %f", weight, height, shoe); return; }