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

strings-6.c

Blame
  • Forked from Peter Gerwinski / hp
    281 commits behind the upstream repository.
    strings-6.c 199 B
    #include <stdio.h>
    
    int main (void)
    {
      volatile char answer[] = {42, 137, 13, 117};
      char hello[14] = "Hello, world!\n";
      printf ("%s", hello);
      printf ("Answer: %d\n", answer[0]);
      return 0;
    }