CMSC 104 - Quiz 2

Total of 35 points possible - possible point totals for each question are shown as (X) below

  1. (5) What is the library that contains the math helper functions?
  2. (9) What are the three parts of a function prototype?

    1. ___________
    2. ___________
    3. ___________
  3. (4) What is the result of the man command in linux?
  4. (5) What does the keyword void mean?
  5. (12) Circle all syntax errors in the code segment below:
    void PrintGreetings() int main(void) { printGreetings(x); return (); } PrintGreetings() ( printf("Hello World\n"); )