Select Git revision
gpu.bazelrc
arrays-pointers-16.c 182 B
#include <stdio.h>
int main (void)
{
char *hello = "Hello, world!";
char p[] = { hello - 150 }; /* ein Element des Arrays initialisieren */
printf ("%s\n", p);
return 0;
}