char *ptr; char myString[]="abcdefg"; ptr=myString ptr+=5;
The pointer ptr points to which string?
Answer & ExplanationOption: [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
Article and Schedule Quiz | Start Test! |