Skip to content
Snippets Groups Projects
Select Git revision
  • a59108346634bdbaa1792ee936df5b3dc1fb55b7
  • master default protected
2 results

instructions_windows_weai.tex

Blame
  • array-vs-pointer-6.c 100 B
    #include <stdio.h>
    
    int main (void)
    {
      char h[] = "Hello!\n";
      printf ("%c\n", *h);
      return 0;
    }