C语言中的二维数组是什么?!
数组是一组以通用名称存储的相关项。
语法
声明数组的语法如下-
datatype array_name [size];
数组类型
数组大致分为三种类型。它们如下-
一维数组
二维数组
多维数组
初始化
可以通过两种方式初始化数组,如下所示-
编译时初始化。
运行时初始化。
两个多维数组
这些用于必须在矩阵应用程序中存储(或)值表的情况。
语法
语法如下-
datatype array_ name [rowsize] [column size];
例如inta[5][5];
10
20
30
40
50
60
以下是用于编译时初始化的C程序-
示例
#include输出结果main ( ){ int a[3][3] = {10,20,30,40,50,60,70,80,90}; int i,j; printf ("elements of the array are"); for ( i=0; i<3; i++){ for (j=0;j<3; j++){ printf("%d \t", a[i] [j]); } printf("\n"); } }
输出如下-
elements of the array are: 10 20 30 40 50 60 70 80 90
以下是用于运行时初始化的C程序-
示例
#include输出结果main ( ){ int a[3][3] ,i,j; printf ("enter elements of array"); for ( i=0; i<3; i++){ for (j=0;j<3; j++){ scanf("%d", &a[i] [j]); } } printf("elements of the array are"); for ( i=0; i<3; i++){ for (j=0;j<3; j++){ printf("%d\t", a[i] [j]); } printf("\n"); } }
输出如下-
Enter elements of array : 1 2 3 4 5 6 7 8 9 Elements of the array are 1 2 3 4 5 6 7 8 9
下面给出的是使用运行时编译计算数组中所有元素的总和和乘积的C程序-
示例
#include输出结果void main(){ //Declaring the array - run time// int A[2][3],B[2][3],i,j,sum[i][j],product[i][j]; //Reading elements into the array's A and B using for loop// printf("Enter elements into the array A: \n"); for(i=0;i<2;i++){ for(j=0;j<3;j++){ printf("A[%d][%d] :",i,j); scanf("%d",&A[i][j]); } printf("\n"); } for(i=0;i<2;i++){ for(j=0;j<3;j++){ printf("B[%d][%d] :",i,j); scanf("%d",&B[i][j]); } printf("\n"); } //Calculating sum and printing output// printf("Sum array is : \n"); for(i=0;i<2;i++){ for(j=0;j<3;j++){ sum[i][j]=A[i][j]+B[i][j]; printf("%d\t",sum[i][j]); } printf("\n"); } //Calculating product and printing output// printf("Product array is : \n"); for(i=0;i<2;i++){ for(j=0;j<3;j++){ product[i][j]=A[i][j]*B[i][j]; printf("%d\t",product[i][j]); } printf("\n"); } }
输出如下-
Enter elements into the array A: A[0][0] :2 A[0][1] :3 A[0][2] :1 A[1][0] :2 A[1][1] :4 A[1][2] :5 B[0][0] :1 B[0][1] :2 B[0][2] :3 B[1][0] :5 B[1][1] :6 B[1][2] :7 Sum array is : 3 5 4 7 10 12 Product array is : 2 6 3 10 24 35