summaryrefslogtreecommitdiff
path: root/reference/C/PROBLEMS/times3.c
blob: 2314885943972ac095f53dc5eb1bba058a48072a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

main()
{
  unsigned Inc;

  for (Inc=1; Inc <= 144; Inc++)
  {
    printf("%3d%c", Inc, (Inc%12)?' ':'\n');
  }