Possible Duplicate:
What is the difference between char s[] and char *s in C?
char *p="Help"
printf("%ud",p);
i get the base address of "Help" as output.Does that mean that a string("Help")always returns its base address.If so Is this the same case with C++.
also can u explain what exactly is happening below.
char name[]="Hello";
I know this is silly but my brain is not in peace.