#include<stdio.h>
#include<string.h>
#define MAX_VAL 100
//Function declaration
int input_values(int Z[][k], int j, int k);
int main(void)
{
int A(int [ ][k], int, int);
int m, n;
char comm[100];
while(1){
printf("\n>>");
gets(comm);
if(strcmp(comm,"MAKE A")== 0)
input_values(A, j, k );
}
}
//make or overwrite matrix
int input_values(int Z[][k], int j, int k)
{
int row, col;
//DETERMINING THE SIZE OF MATRIX
do{
printf("Enter the number of rows: ");
scanf("%d", &row);
if(row>100)
printf("Size is out of bounds! Size must be less than or equal to 100\n");
}while(row>100);
do{
printf("Enter the number of columns: ");
scanf("%d", &col);
if(col>100)
printf("Size is out of bounds! Size must be less than or equal to 100\n");
}while(col>100);
//ENTERING THE VALUES OF MATRIX
for(j=0; j<row; j++)
for(k=0; k<col; k++){
printf("A[%d][%d] = ", j, k);
scanf("%d", &Z[j][k]);
}
return Z[][];
}
答案 0 :(得分:0)
好吧,int Z[][k]
在C语言中不是有效的语法。不是声明而不是参数。它肯定不是C#。
此外,int A(int [ ][k], int, int);
是函数的前向声明。它与input_values的第一个参数不匹配。
我猜你最终得到了A
的这种表示法,因为它没有给出语法错误。那是因为C编译器只是忽略了那里的无效k
。