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