-2

スライダー パズルを実行しようとしましたが、コンパイル後に警告が表示されます。

puzzle.c: 関数 'main' 内: puzzle.c:50:6: 警告: 'choice' の引数 1 を渡すと、キャストなしで整数からポインターが作成されます [デフォルトで有効] puzzle.c:2:5: 注: 予期される「int (*)[4]」ですが、引数の型は「int」です</p>

プログラムを実行すると、プログラムが関数に入ると SEGMENTATION FAULT が表示されます

私のプログラムは以下です

int choice(int b[4][4],int *x,int y,int z,int c);    

int main()    
{        
  int i,j,row,col,p,s,c;        
  p=33;        
  int  w[4][4]={{ 2, 3, 4, 5},\
                { 7, 9,11,12},\
                {13,15,19,22},\
                {34,45,65,-1}};

  int  a[4][4]={{15,12, 3, 2},\
                { 4, 7,13,65},\
                {34, 9,45,22},\
                {5,11,19,-1}};

  printf("Welcome to the puzzle the puzzle matrix is below... enjoy!\n");


  for(i=0;i<4;i++)
    {
      printf("\n");
      for(j=0;j<4;j++)
      {
        printf("%d\t",a[i][j]);
      }
    }

 printf("-1 is the empty block\n");
 printf("To exit Enter 0 and to continue Enter 1\n");
 printf("Do you want to start or exit\n");

 scanf("%d",&s);

 while(s==1)
   {
   choicer:
     {
     printf("Enter the block you want to move\n"); 
     printf("Enter the row number\n");
     scanf("%d",&row);

     printf("Enter the column number\n");
     scanf("%d",&col);    
     }

     if(row>3||col>3)
       {
         printf("Invalid row or col numbers\n");
         goto choicer;
       }

     choicel:
     {
       printf("The choices to move the block are :\n 2= right,\n 3=left,\n 4=up,\n 5=down\n");
       printf("Enter the choice\n");

       scanf("%d",&c);    
     }

     if(c!=2 && c!=3 && c!=4 && c!=5)
     {
       printf("Invalid choice");

       goto choicel;
     }

     choice(a[4][4],&p,row,col,c);

     for(i=0;i<4;i++)
     {
       printf("\n");
       for(j=0;j<4;j++)
       {
         printf("%d",a[i][j]);
       }
     }

     for(i=0;i<4;i++)
     {
       for(j=0;j<4;j++)
       {
         if(a[i][j]==w[i][j])
           {
         printf("Game finished.. YOU WON!!!");
           }
       }
     }

     printf("Do you want to exit? \n 0=exit ,\n 1=continue\n");

     scanf("%d",&s);
   }

}


int choice(int b[4][4],int *x,int y,int z,int c)

{

  int temp;

  if(c==4)

    {

      if(*x!=(((y-1)*10)+z))

    {

      printf("Invalid move");

      return b[4][4];

    }
      else

    {

      temp = b[y][z];

      b[y][z]=b[y-1][z];

      b[y-1][z]=temp;

      *x=(((y-1)*10)+z);

      return b[4][4];

     }

    }

  else if(c==5)

    {

      if(*x!=(((y+1)*10)+z))

    {

      printf("Invalid move");

      return b[4][4];

    }

      else

    {

      temp = b[y][z];

      b[y][z]=b[y+1][z];

      b[y+1][z]=temp;

      *x=(((y+1)*10)+z);

      return b[4][4];

     }

    }
  else if(c==2)

    {

      if(*x!=((y*10)+(z-1)))

    {

      printf("Invalid Move");

      return b[4][4];

    }

      else

    {

      temp=b[y][z];

      b[y][z]=b[y][z-1];

      b[y][z-1]=temp;

      *x=((y*10)+(z-1));

      return b[4][4];

    }

    }
  else 

    {
      if(*x!=((y*10)+(z+1)))

    {
      printf("Invalid Move");

      return b[4][4];
    }

      else
    {

      temp=b[y][z];

      b[y][z]=b[y][z+1];

      b[y][z+1]=temp;

      *x=((y*10)+(z+1));

      return b[4][4];

    }

    }

}
4

2 に答える 2