📚 Practice Mode

C Programming Fundamentals

Learn at your own pace with hints and detailed explanations

1 / 23
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