question regarding pointer in c language

Posted by din on Stack Overflow See other posts from Stack Overflow or by din
Published on 2010-06-03T04:12:06Z Indexed on 2010/06/03 4:24 UTC
Read the original article Hit count: 201

Filed under:
char *sample = "String Value";

&sample is a pointer to the pointer of "String Value"

is the above statement right?

If the above statement right, what is the equivalent of &sample if my declaration is

char sample[] = "String Value"

© Stack Overflow or respective owner

Related posts about c