/* Matrix of the numbers 0 to 99, incrementing down the columns. */ #include main() { int j, i; for (i=0; i<=9; i++) { for (j=i; j<=i+90;j+=10) { printf("%3d",j); } putchar('\n'); } }