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