[Solved] Need help in clarifying some memory references/pointers in C
[ad_1] Let’s see if I can take a go at this. First off, I recommend getting a simple, free c compiler to try these examples out. Most of these examples can be tested that way. 1. var -> a[var -> count] vs &var -> a[var -> count] Beware that ‘var’ is a pointer to a … Read more