Function pointer confusion cleared
The two examples below will work interchangeably, but for easier remembrance and understanding, stick with one convention
int (*ptr)(int, int) = ∑ s = (*ptr)(1, 2);
OR
int (*ptr)(int, int) = sum; s = ptr(1, 2);
both still work, so choose one ...
snowcodes.hashnode.dev1 min read