Meta
Categories
Category Archives: cpp
C++ Pointers and References
Pointers Why pointers Faster array operation Access large blocks of data out of functions Allocate memory space dynamically at runtime Declare and initialize a pointer long* pnumber = NULL; long* pnumber2 = &number2; Assign memory address to a pointer Using … Continue reading
Posted in cpp
Leave a comment