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