Operators Flashcards

1
Q

case

A

A branch in a switch-statement

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

char

A

Character data type

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

const

A

Make a variable unmodifiable

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

continue

A

Continue to the top of a loop

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

default

A

Default branch in a switch-statement

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

do

A

Start a do-while loop

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

double

A

A double floating point data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
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
9
Q

enum

A

Define of a set of int constants

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

extern

A

Declare an identifier is defined externally

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

float

A

A floating point data type

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

for

A

Start a for-loop

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

goto

A

Jump to a label

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

if

A

Starts an if-statement

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

int

A

An integer data type

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

long

A

A long integer data type

17
Q

register

A

Declare a variable be stored in a CPU register

18
Q

return

A

Return from a function

19
Q

short

A

A short integer data type

20
Q

signed

A

A signed modifier for integer data types

21
Q

sizeof

A

Determine the size of data

22
Q

static

A

Preserve variable value after its scope exits

23
Q

struct

A

Combine variables into a single record

24
Q

switch

A

Start a switch-statement

25
Q

typedef

A

Create a new type

26
Q

union

A

Start a union-statement

27
Q

unsigned

A

An unsigned modifier for integer data types

28
Q

void

A

Declare a data type empty

29
Q

volatile

A

Declare a variable might be modified elsewhere

30
Q

while

A

Start a while-loop

31
Q

auto

A

Give a local variable a local lifetime

32
Q

break

A

Exit out of a compound statement