📚 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?
- fg
- efg
- defg
- cdefg
- None of the above