All posts on technology

There is 1 post, 1 category.

Programming

Pointer with Array and its name

3 minute read

In C++, the array name is the address of the array, just like in C. We could use the array name or the pointer to the array name to index the array. However,...

Back to top ↑