Select Git revision
Forked from
Peter Gerwinski / hp
Source project has a limited visibility.
arrays-pointers-11.c 131 B
#include <stdio.h>
int main (void)
{
char *hello = "Hello, world!";
char p[] = { hello };
printf ("%s\n", p);
return 0;
}