search for: memory8

Displaying 1 result from an estimated 1 matches for "memory8".

Did you mean: memory
2005 Dec 29
1
Problems with calloc function.
...L){ printf("\n\n No Memory6!"); exit(1); } temp=(int*)calloc(tam,sizeof(int)); if(temp == NULL){ printf("\n\n No Memory7!"); exit(1); } iia = (int *)calloc(row-1,sizeof(int)); if(iia == NULL){ printf("\n\n No Memory8!"); exit(1); } iib = (int *)calloc(row-1,sizeof(int)); if(iib == NULL){ printf("\n\n No Memory9!"); exit(1); } ############################################ In output ! > No Memory5! >[marcelo@cocada01 home] $ What's wrong? Thanks!...