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

loesung-4.c

Blame
  • Forked from Peter Gerwinski / hp
    46 commits behind the upstream repository.
    loesung-4.c 108 B
    #include <stdio.h>
    
    int main (void)
    {
      for (int i = 10; i >= 0; i--)
        printf ("%d\n", i);
      return 0;
    }