精选优质文档-倾情为你奉上Chapter 2Answers to Selected Exercises2. was #2 (a) The program contains one directive (#include) and four statements (three calls of printf and one return).(b) Parkinsons Law:Work expands so as to fill the timeavailable for its completion.3. was #4#include int main(void) int height = 8, length = 12, width = 10, volume; volume = height * length * width; printf(Dimensions: %dx%dx%dn, length, width, height); printf(Volume