Skip to content
Snippets Groups Projects
Select Git revision
  • aeadb66c6d0dad0f3bff78acbb0c79ea05d061d4
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

gtk-12.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    arrays-and-pointers-09.c 162 B
    #include <stdio.h>
    
    int main (void)
    {
      char *a[] = { "Dies", "ist", "ein", "Test" };
      for (char **p = a; p < a + 4; p++)
        printf ("%s\n", *p);
      return 0;
    }