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

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;

17 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

strcmp(str1,str2)

compare two strings

strcpy(dest,src)

Copy src onto dest

memcpy(dest,src,n)

Copy n chars from src to dest

GDB

GNU Debugger

GNU

Gnu is Not Unix

A recursive acronym

sizeof()

Get the sizeof

&

The address of

*

The value of

->

Structure dereference

.

Structure reference

auto

Give the local variable a local lifetime

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