All Questions
1 question
-6
votes
4
answers
380
views
What are good strategies in C for dealing with pointer errors of this type? [closed]
In C, I often come across errors with code like this
prio_queue->head[index] = newEntry;
Yields a " "Cannot assign Entry** to Entry* "
How do you prevent/debug errors of this type, in general?