char s[]= "hello";
char *p = s;
cout << s[0] << " " << p[0];
Answer:
h h


