| 1. | | includes information about other code modules and begins with a pound sign (#) followed by the word “include” and brackets |
| |
| 2. | | used for both integers and doubles, doubling the amount of memory used for each type, dramatically increasing their digits of significance |
| |
| 3. | | C strings are stored as a sequence of characters followed by a terminating _____ character |
| |
| 4. | | there are six ______ operands: +, -, *, /, %, = |
| |
| 5. | | this special term is usually involved in a syntax error produced by the compiler that refers to something that appears on the left side of the assignment operator |
| |
| 6. | | there is one ______ operand: ? ; this type of operand is used to simplify if-else conditional statements |
| |
| 7. | | allows a programmer to describe (in English) the algorithms and approaches used in a program; the compiler does not process these and they begin with // for a single-line or /* */ for multiple lines |
| |
| 8. | | this special term is usually involved in a syntax error produced by the compiler that refers to something that appears on the right side of the assignment operator |
| |
| 9. | | a function used to determine the actual byte size used for each datatype in C |
| |
| 10. | | also known as subroutines, these are named modules of code that are designed to perform a specific operation in a program |
| |
| 11. | | there are three _____ operands: +, - ! |
| |
| 12. | | a command used to compile C programs in a Unix environment |
| |
| 13. | | considered as the assignment operator |
| |
| 14. | | these are also known as arguments; they are passed to functions to modify or alter what the function does or they modify the data that functions operate on |
| |
| 15. | | int, float, double, char, etc. |
| |
| 16. | | this appears before a variable name when using the scanf function; it allows values to be stored in a variable name and refers to the address of that variable |
| |
| 17. | | _____ 0; is a command that is placed at the end of the main function that terminates a program |
| |
| 18. | | used to represent the end of a command in a program such as variable declaration |
| |
| 19. | | a function used to display output |
| |
| 20. | | used with integers to decrease the amount of memory used |
| |
| 21. | | used for variable names and must follow a particular syntax (must begin with a letter or underscore, can be up to 128 characters in length, cannot be keywords but can contain keywords, can include numbers, cannot include special characters except for underscores) |
| |
| 22. | | a function used to receive data entered by the user |
| |
| 23. | | this datatype does not technically exist in the C programming language; it must be declared as a character array |
| |
| 24. | | int _____ ( ) is the function where a program begins its execution, and it typically controls the flow of a program if other functions are involved |
| |
| 25. | | used for both integers and characters to eliminate negative values and effectively double the number of positive values |
| |
| 26. | | ./a.____ is used to run a program in a Unix environment |
| |
| 27. | | describes a program's ability to distinguish between uppercase and lowercase letters |
| |