0
#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[][];
}
4

1 回答 1

0

好吧,int Z[][k]这不是 C 中的有效语法。不是作为声明,也不是作为参数。它当然不是 C#。

此外,int A(int [ ][k], int, int);是函数的前向声明。它与 input_values 的第一个参数不匹配。

我猜你最终得到了这个符号,A因为它没有给出语法错误。那是因为 C 编译器只是忽略了k那里的无效。

于 2010-08-14T12:43:44.123 回答