/*height and weight program*/ #include main() { int weight; /*character declarations*/ int height; int shoe; weight=200; /*body of prgram*/ height=6; /*assigns values to variables*/ shoe=11; printf("weight %d\n", weight); printf("height %d\n", height); printf("shoe %d\n", shoe); return; /*ends program*/ }