Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • cvh
  • main
3 results

WORKSPACE

Blame
  • 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;
    }