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

loesung-2-2.c

Blame
  • Forked from Peter Gerwinski / hp
    312 commits behind the upstream repository.
    loesung-2-2.c 142 B
    #include <stdio.h>
    
    int main (void)
    {
      int x = 7;
      for (int i = 1; i <= 10; i++)
        printf ("%2d *%2d =%3d\n", i, x, i * x);
      return 0;
    }