Displaying 1 result from an estimated 1 matches for "memory3".
Did you mean:
memory
2005 Dec 29
1
Problems with calloc function.
...printf("\n\n No Memory1!");
exit(1);
}
temp2 = (int *)calloc(col,sizeof(int));
if(temp2 == NULL){
>printf("\n\n No Memory2!");
>exit(1);
}
temp3 = (int *)calloc(col,sizeof(int));
if(temp3 == NULL){
>printf("\n\n No Memory3!");
>exit(1);
}
temp4 = (int *)calloc(col,sizeof(int));
if(temp4 == NULL){
printf("\n\n No Memory4!");
exit(1);
}
int *cvector;
cvector = (int *)calloc(col,sizeof(int));
if(cvector == NULL){
printf("\n\n No Memory5...