• 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/7

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;

7 Cards in this Set

  • Front
  • Back

typedef DEFINITION IDENTIFIER

Syntax for typedef declaration

struct NAME{


ELEMENTS;


} [VARIABLE_NAME];

Packaging of many base data types into a single concept

What is a typedef?

Defines a new type

union NAME{

ELEMENTS;


} [VARIABLE NAME];

Syntax of union

typedef struct [STRUCT_NAME]{


ELEMENTS;


} IDENTIFIER;



Common syntax for creating a custom data-structure type

What is a struct?

Packaging of many base data types into a single concept

What is a union

Similar to a struct, but elements overlap in memory.