int main()
{
printf("%u %s",&"hello",&"hello");
return 0;
}
can you please explain that how "hello" is working here ? i know it is string constant ? so it is acting as a pointer to a char like i do
char *s= "daniweb";
so, if it is the case, then why do i need & to find it's address ? I am little bit confused. Can you explain the output if i don't write & with both "hello" ? thanks in advance.