#include <stdio.h> int main (void) { char *hello = "Hello, world!"; char p[] = { hello }; printf ("%s\n", p); return 0; }