GkSeries.com

Q.

	char *ptr;
	char myString[]="abcdefg";
	ptr=myString
	ptr+=5;
	

The pointer ptr points to which string?

[A] fg
[B] efg
[C] defg
[D] cdefg
Answer & Explanation
Option: [A]

ptr+=5 means ptr=ptr+5

That means the pointer variable is incremented by 5. Hence it is pointing to the 6th location. i.e. fg