Loads a two-dimensional array with the numbers 1 through 12 and prints them row by row. - C Array

C examples for Array:Multidimensional Arrays

Description

Loads a two-dimensional array with the numbers 1 through 12 and prints them row by row.

Demo Code

#include <stdio.h>

int main(void)
{
   int t, i, num[3][4];

   for (t = 0; t<3; ++t)
      for (i = 0; i<4; ++i)
         num[t][i] = (t * 4) + i + 1;/*from www . j av  a  2  s . c o  m*/

   /* now print them out */
   for (t = 0; t<3; ++t) {
      for (i = 0; i<4; ++i)
         printf("%3d ", num[t][i]);
      printf("\n");
   }

   return 0;
}

Result


Related Tutorials