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