C++ C++ Basic Pointer

Introduction

  1. C++ Pointer Introduction
  2. C++ Pointer Address Operators and Pointer Operators
  3. C++ Pointer address operator in front of a variable's name to get the address of the variable
  4. C++ Pointer access character within string via pointer
  5. C++ Pointer Access next array element by add one to array pointer, *(arrayName + i)
  6. C++ Pointer access Object functions accessed
  7. C++ Pointer Access value using pointers
  8. C++ Pointer Accessing member functions by pointer


  9. C++ Pointer Accessing the variable pointed to
  10. C++ Pointer Array accessed with pointer
  11. C++ Pointer Array of pointers to objects
  12. C++ Pointer Array passed by pointer
  13. C++ Pointer as address variables
  14. C++ Pointer Change Variable via a Pointer Variable
  15. C++ Pointer Changes the value of a pointer variable
  16. C++ Pointer Copy one char array to another with pointers


  17. C++ Pointer Create int type pointer and assign int variable address to it
  18. C++ Pointer Creating and Using Dynamic Arrays
  19. C++ Pointer declarations and operators
  20. C++ Pointer Dereferencing the pointer returned by new
  21. C++ Pointer Dereferencing to Calculates the purchase price for a given quantity of items
  22. C++ Pointer for int type
  23. C++ Pointer get address of variable via address operator &
  24. C++ Pointer Get Addresses of variables
  25. C++ Pointer Get variable address via & Character
  26. C++ Pointer Increments a pointer through an integer array.
  27. C++ Pointer notation and reference pointers as arrays with array notation
  28. C++ Pointer Orders two arguments using pointers
  29. C++ Pointer Output a character array to standard output
  30. C++ Pointer passing non arrays by address.
  31. C++ Pointer Point to Something Else and Back Again
  32. C++ Pointer Pointers to Your Objects
  33. C++ Pointer Read variable's value via pointer.
  34. C++ Pointer References both array and pointer using subscripts
  35. C++ Pointer Storing even numbers in an array and accessing them
  36. C++ Pointer Swap parameter
  37. C++ Pointer to an Object Question
  38. C++ Pointer to Functions
  39. C++ Pointer to Objects
  40. C++ Pointer to String
  41. C++ Pointer to type void
  42. C++ Pointer with Array
  43. C++ Pointer and References to Class Objects
  44. C++ Smart Pointer: unique vs shared
  45. C++ Smart Shared Pointer
  46. C++ Smart Unique Pointer
  47. C++ Smart Unique Pointer via make_unique<>()
  48. C++ Smart Unique Pointer with polymorphic classes