Skip to content
Snippets Groups Projects
Select Git revision
  • 47fbe2beac25a805511f2dca459d67e1e6859c88
  • master default
2 results

cube-2.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    array-vs-pointer-5.c 131 B
    #include <stdio.h>
    
    int main (void)
    {
      char *h = "Hello!\n";
      int i = 0;
      while (h[i])
        printf ("%c", h[i++]);
      return 0;
    }