Operators Flashcards
1
Q
case
A
A branch in a switch-statement
2
Q
char
A
Character data type
3
Q
const
A
Make a variable unmodifiable
4
Q
continue
A
Continue to the top of a loop
5
Q
default
A
Default branch in a switch-statement
6
Q
do
A
Start a do-while loop
7
Q
double
A
A double floating point data type
8
Q
else
A
An else branch of an if-statement
9
Q
enum
A
Define of a set of int constants
10
Q
extern
A
Declare an identifier is defined externally
11
Q
float
A
A floating point data type
12
Q
for
A
Start a for-loop
13
Q
goto
A
Jump to a label
14
Q
if
A
Starts an if-statement
15
Q
int
A
An integer data type