C Syntax Flashcards

1
Q

auto

A

Give a local variable a local lifetime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

break

A

Exit out of a compound statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

case

A

A branch in a switch statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

char

A

Character data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

const

A

Make a variable unmodifiable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

continue

A

Continue/Jump to the top of a loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

default

A

Default branch in a switch statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

do

A

Start a do-while loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

double

A

Double floating point data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

else

A

An else branch of an if statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

enum

A

Define a set of int constants

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

extern

A

Declare an identifier is defined externally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

float

A

Floating point data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

for

A

Start a for-loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

goto

A

Jump to a label

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

if

A

Start an if-statement

17
Q

int

A

Integer data type

18
Q

long

A

Long integer data type

19
Q

register

A

Declare a variable be stored in a CPU register

20
Q

return

A

Return from a function

21
Q

short

A

Short integer data type

22
Q

signed

A

Signed modifier for integer data types

23
Q

sizeof

A

Determine the size of data

24
Q

static

A

Preserve variable value after its scope exits

25
struct
Combine variables into a single record, a structure
26
switch
Start a switch-statement
27
typedef
Create/define a new type
28
union
Start a union-statement
29
unsigned
Unsigned modifier for integer data types
30
void
Declare a data type empty
31
volatile
Declare a variable might be modified elsewhere
32
while
Start a while-loop