Skip to content
Snippets Groups Projects
Select Git revision
  • 4ff440eaac9aee21bd0a6c7f5ce7927ee4cd9b94
  • master default
2 results

hanoi-2.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    comma-3.c 104 B
    #include <stdio.h>
    
    int main (void)
    {
      for (int i = 1; i < 10; printf ("%d\n", i), i++);
      return 0;
    }