Displaying 1 result from an estimated 1 matches for "cvector".
Did you mean:
vector
2005 Dec 29
1
Problems with calloc function.
...;
}
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!");
exit(1);
}
tam=ntam;
int **matrix;
matrix=(int**)calloc(row,sizeof(int*));
if(matrix == NULL){
printf("\n\n No Memory6!");
ex...