// Prints address of first char of a string #include #include int main(void) { string s = "HI!"; char c = s[0]; char *p = &c; printf("%p\n", p); }