1.

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

A. g
B. fg
C. efg
D. defg
E. cdefg
Answer» B. fg


Discussion

No Comment Found