Skip to content
Snippets Groups Projects
Select Git revision
  • 2023ss
  • 2024ss default
  • 2022ss
  • 2021ss protected
4 results

BSD-MODIFIED

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