Fundamentals of C Programming

123456789101112131415
Across
  1. 3. a picture of the separate steps of a process in sequential order
  2. 5. a user-defined or a user-readable custom name assigned to a memory location
  3. 8. types of symbols that inform a compiler for performing some specific logical or mathematical functions
  4. 9. are the type of data stored in a C program
  5. 11. format specifier for float
  6. 13. ( ++ )
  7. 14. (a += b)identify this operators
  8. 15. predefined or reserved words that have special meanings to the compiler
Down
  1. 1. AND( && ), OR( || ), and NOT ( ! ).
  2. 2. ^, <<,>> identify the operators
  3. 4. + (addition), - (subtraction), * (multiplication), / (division), and % (modulo)
  4. 6. can be described as the user-specified name
  5. 7. the value that cannot be changed during program execution
  6. 10. tokens in C
  7. 12. a step-by-step procedure to solve a given problem