Search Results

0
votes

What are the barriers to understanding pointers and what can be done to overcome them?

I like the house address analogy, but I've always thought of the address being to the mailbox itself. This way you can visualize the concept of dereferencing the pointer (opening the mailbox). …
14
votes

What is the best way to learn recursion?

One of the simplest examples I have seen is calculating a factorial unsigned int factorial(unsigned int n) { if (n <= 1) return 1; return n * factorial(n-1); } …