DEBSOURCES
Skip Quicknav
sources / c-cpp-reference / 2.0.2-8 / reference / C / PROBLEMS / times3.c
1234567891011
#include <stdio.h> main() { unsigned Inc; for (Inc=1; Inc <= 144; Inc++) { printf("%3d%c", Inc, (Inc%12)?' ':'\n'); }