1) [4 pts] % cp ~bp106001/Homeworks/hw1.soln homework1.soln [Should be ss in Steve's sections ] % more homework1.soln or % emacs homework1.soln % rm homework1.soln 2) [3 pts] C-x C-f (Control x Control f, however they chose to express that) 3) [3 pts] Some random garbage value, or whatever happened to be in there before the program was run. Valid answer include: garbage, blah, foo, stuff, or some more descriptive answer. 4) [12 pts] a) 4,60 b) 15% ival /ival2 c) 15 * 7.142 d) 6.283180 5) [18 pts] #include #define INCHESPERFOOT 12 #define FEETPERMILE 5280 /* this is problem 5 */ main(){ int inches, feet, miles; printf("Enter the distance in inches: "); scanf("%d", &inches); feet = inches / INCHESPERFOOT; inches = inches% INCHESPERFOOT; printf("\n%d feet and %d inches\n", feet, inches); miles = feet / FEETPERMILE; feet = feet % FEETPERMILE; printf("%d miles, %d feet, and %d inches\n", miles, feet, inches); return 0; }