C Programming Fundamentals

Casual Mode - Take your time!

1 / 23
Correct
0
Incorrect
0
Score
0%
Multiple Choice

char *ptr;
char myString[] = abcdefg;
ptr = myString;
ptr += 5;
What string does ptr point to in the sample code above?

  1. fg
  2. efg
  3. defg
  4. cdefg
  5. None of the above
Change Mode