FUNCT_2D.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void show_2d_array(int array[][10], int rows)
  3.  {
  4.    int i, j;
  5.    for (i = 0; i < rows; i++)
  6.      for (j = 0; j < 10; j++)
  7.        printf("array[%d][%d] = %dn", i, j, array[i][j]);
  8.  }
  9. void main(void)
  10.  {
  11.    int a[1][10] = {{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}};
  12.    int b[2][10] = {{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
  13.                    {11, 12, 13, 14, 15, 16, 17, 18, 19, 20}};
  14.    int c[3][10] = {{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
  15.                    {11, 12, 13, 14, 15, 16, 17, 18, 19, 20},
  16.                    {21, 22, 23, 24, 25, 26, 27, 28, 29, 30}};
  17.    show_2d_array(a, 1);
  18.    show_2d_array(b, 2);
  19.    show_2d_array(c, 3);
  20.  }