Announcements and Reminders
|
RecordingPointersWhat is a pointer?Why are pointers used?
Other stuff Return
by address pointer to const, const pointer Is this OK? int a[5] = { 98, 76, 84, 100, 95 }; int b[5]; b = a;
A pointer to pointer
Videos Buckys C++ Programming Tutorials - 38 - Introduction to Pointers (6 minutes) This is a good introduction to pointers Buckys C++ Programming Tutorials - 39 - Pass by Reference with Pointers (9 minutes) Buckys C++ Programming Tutorials - 41 - Pointers and Math (6 minutes) |