Compilando il seguente programma (tratto da un manuale Deitel):
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
/* prototypes */
void shuffle( int wDeck[][ 13 ] );
void deal( const int wDeck[][ 13 ], const char *wFace[],
const char *wSuit[] );
int main( void )
{
/* initialize suit array */
const char *suit[ 4 ] = { "Hearts", "Diamonds", "Clubs", "Spades" };
/* initialize face array */
const char *face[ 13 ] =
{ "Ace", "Deuce", "Three", "Four",
"Five", "Six", "Seven", "Eight",
"Nine", "Ten", "Jack", "Queen", "King" };
/* initialize deck array */
int deck[ 4 ][ 13 ] = { 0 };
srand( time( 0 ) ); /* seed random-number generator */
shuffle( deck ); /* shuffle the deck */
deal( deck, face, suit ); /* deal the deck */
return 0; /* indicates successful termination */
} /* end main */
/* shuffle cards in deck */
void shuffle( int wDeck[][ 13 ] )
{
int row; /* row number */
int column; /* column number */
int card; /* counter */
/* for each of the 52 cards, choose slot of deck randomly */
for ( card = 1; card <= 52; card++ ) {
/* choose new random location until unoccupied slot found */
do {
row = rand() % 4;
column = rand() % 13;
} while( wDeck[ row ][ column ] != 0 ); /* end do...while */
/* place card number in chosen slot of deck */
wDeck[ row ][ column ] = card;
} /* end for */
} /* end function shuffle */
/* deal cards in deck */
void deal( const int wDeck[][ 13 ], const char *wFace[],
const char *wSuit[] )
{
int card; /* card counter */
int row; /* row counter */
int column; /* column counter */
/* deal each of the 52 cards */
for ( card = 1; card <= 52; card++ ) {
/* loop through rows of wDeck */
for ( row = 0; row <= 3; row++ ) {
/* loop through columns of wDeck for current row */
for ( column = 0; column <= 12; column++ ) {
/* if slot contains current card, display card */
if ( wDeck[ row ][ column ] == card ) {
printf( "%5s of %-8s%c", wFace[ column ], wSuit[ row ],
card % 2 == 0 ? '\n' : '\t' );
} /* end if */
} /* end for */
} /* end for */
} /* end for */
} /* end function deal */
Nonostante il programma funzioni, viene visualizzato il seguente messaggio:
- fig07_24.c In function `main':
29 C:\Users\Samuele\Desktop\fig07_24.c [Warning] passing arg 1 of `deal' from incompatible pointer type
Questo messaggio di Warning è da imputare al fatto che la funzione
deal dichiara wDeck come matrice costante, mentre nella chiamata della funzione all'interno del
main viene passata una matrice che non è costante?
Se è così, perché viene lanciato tale messaggio (che, mi rendo conto, non è un errore, ma dovrebbe comunque segnalare una qualche "anomalia"), visto che inserire
const prima di un parametro di una funzione è una prassi permessa ed anzi consigliata tutte le volte che si voglia evitare l'eventualità che la funzione vada a modificare accidentalmente la variabile stessa?[/list]
Grazie per i chiarimenti