The C Pointer Game
Pointers, Arrays and Strings for Kids
Featured
5 Votes







Description
I made few card games to help me teach my 11 yo daughter programming. This game is specifically about pointers and memory, to help kids understand what the equal sign means and the difference between value and reference. x=5 y=x x=6 print(y) and a=[] b=a a.push(1) print(b)