| | 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 |
| |
| | there are six ______ operands: +, -, *, /, %, = |
| |
| | describes a program's ability to distinguish between uppercase and lowercase letters |
| |
| | int, float, double, char, etc. |
| |
| | considered as the assignment operator |
| |
| | a command used to compile C programs in a Unix environment |
| |
| | includes information about other code modules and begins with a pound sign (#) followed by the word “include” and brackets |
| |
| | 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) |
| |
| | used for both integers and doubles, doubling the amount of memory used for each type, dramatically increasing their digits of significance |
| |
| | 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 |
| |
| | int _____ ( ) is the function where a program begins its execution, and it typically controls the flow of a program if other functions are involved |
| |
| | C strings are stored as a sequence of characters followed by a terminating _____ character |
| |
| | ./a.____ is used to run a program in a Unix environment |
| |
| | 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 |
| |
| | a function used to display output |
| |
| | _____ 0; is a command that is placed at the end of the main function that terminates a program |
| |
| | 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 |
| |
| | a function used to receive data entered by the user |
| |
| | used to represent the end of a command in a program such as variable declaration |
| |
| | used with integers to decrease the amount of memory used |
| |
| | a function used to determine the actual byte size used for each datatype in C |
| |
| | this datatype does not technically exist in the C programming language; it must be declared as a character array |
| |
| | there is one ______ operand: ? ; this type of operand is used to simplify if-else conditional statements |
| |
| | there are three _____ operands: +, - ! |
| |
| | used for both integers and characters to eliminate negative values and effectively double the number of positive values |
| |