pascal = (int **) malloc(no_of_rows * sizeof(int));
for (i = 0; i < no_of_rows; i++)
{
*(pascal + i) = (int*) malloc(col * sizeof(int));
}
Can someone tell me what's wrong in this code as I am beginner to this language. I keep on getting problem of Stack Overflow? What could be its possible reasons and how could it be avoided?
should be
Notice the additional
*
I added. In general, you can write it better:Note that casting
malloc
s results is unnecessary in C.