CMSC 104 - Quiz 1

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

  1. (5) What is the double point variable place holder used in scanf() and printf()?
  2. (5) What library contains the printf() and scanf() functions?
  3. (5) What is the result of the pwd command in linux?
  4. (5) What operator returns the remainder of a division?
  5. (15) Circle all syntax errors in the code segment below:
    #include int main(void) [ int int meaning = 42; printf('The meaning is %d', x) return(meaning); ]