0
votes
Learn C first before learning Objective-C
According to Wikipedia, Objective-C is a strict super-set of C. This being the case, I would suggest learning C first. Then wh …
3
votes
Interesting Scope Problem, Explanation?
The scope of your second 'foo' starts at its declaration and continues until the end of the block it is declared in. When you call free(foo) it is acting on the first 'foo' because the second foo …
