[Solved] Clarifications about pointers use
[ad_1] This seams to be bad quality code! Maybe not dangerous, as const appears in prototype. myFunc(const void * p) accepts a pointer to anything and const should mean it won’t touch it. Now, st is a pointer to myStruct, so st->arr is the value of arr member and &st->arr is memory address of arr … Read more