Summary
Full Transcript
►Full C++ Series Playlist: https://www.youtube.com/playlist?list=PLvv0ScY6vfd8j-tlhYVPYgiIyXduu6m-L ►Find full courses on: https://courses.mshah.io/ ►Join as Member to Support the channel: https://www.youtube.com/channel/UCA64pZbN5Mz5NxC3SO4qpDg/join ►Lesson Description: In this lesson we introduce a data type known as a 'pointer'. Pointers store addresses in C++ to a specific data type (e.g. integer pointer, floating pointer, etc.). In order to retrieve the value from a pointer that is stored at an address, we 'dereference the pointer'. Note: The asterisk (or sometimes called 'star') is used in many places now. Pointers allow us to refer to the same piece of data, and thus 'share' the values, and while only having one actual update in one place in the program. Pointers will also allow us to build data structures. Link to a full video on pointers from start to finish: https://www.youtube.com/watch?v=2R5cjpi9Fzw&list=PLvv0ScY6vfd8YRjgGvXKJRAMZQAxNypcH&index=7& ►YouTube Channel: https://www.youtube.com/c/MikeShah ►Please like and subscribe to help the channel!
