• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/32

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

32 Cards in this Set

  • Front
  • Back

auto

Give a local variable a local life time.

break

Exit out of a compound statement.

case

A branch in a switch-statement.

char

character data type.

const

Make a variable unmodifiable.

continue

continue to the top of a loop.

default

Default branch in a switch-statement.

do

start a do-while loop.

double

A double floating-point data type.

else

An else branch of an if-statement.

enum

Define a set of int constants.

extern

Declare an identifier is defined externally.

float

A floating-point data type.

for

start a for-loop.

goto

jump to a label.

if

starts an if-statement.

int

An integer data type.

long

A long integer data type.

register

Declare a variable be stored in a CPU register.

return

Return from a function.

short

A short integer data type.

signed

A signed modifier for integer data types.

sizeof

Determine the size of data.

static

Preserve variable value after its scope exits.

struct

Combine variables into a single record.

switch

Start a switch-statement.

typedef

Create a new type.

union

Start a union-statement.

unsigned

An unsigned modifier for integer data types.

void

Declare a data type empty.

volatile

Declare a variable might be modified elsewhere.

while

Start a while-loop.