codebook = (int **) calloc(codebook _size,sizeof(in t *));
can anyone tell me what does this line is doing
Read this reference page; it can be found in this repository; bookmark it for later reference. Calloc(n, s) allocates n elements of size s and zeros all the bits in the allocated memory. The function returns the start address of the allocated memory.
Comment