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

pgslides.sty

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    strings-11.c 281 B
    #include <stdio.h>
    
    int main (void)
    {
      volatile char answer[] = {42, 65, 66, 117};
      char *a = answer;
      char hello[14] = "Hello, world!\n";
      printf ("%s", hello);
      a -= 4;
      printf ("a: %d %d %d %d %d %d %d %d\n", a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7]);
      return 0;
    }