Select Git revision
loesung-2-2.c
Forked from
Peter Gerwinski / hp
312 commits behind the upstream repository.
Peter Gerwinski authored
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;
}