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

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;

3 Cards in this Set

  • Front
  • Back
What does strcpy(s1, s2) do?
copies all of src's characters to dst, starting at the beginning and ands adds \0.

copies s2 to s1
What does strcat(s1, s2) do?
append all of s2 character to the end of s1.
What does strcmp(s1, s2) do?
-returns 0 if s1 and s2 have the same characters
-returns negative if s1<s2
-returns positive if s1>s2