// Prints a string's address #include #include int main(void) { string s = "HI!"; printf("%p\n", s); }