0 votes
by (160 points)
How do you create an array of pointers in C++?

1 Answer

0 votes
by (1.4k points)
Arrays and pointers are intimately related in C++ and may be used almost interchangeably. An array name can be thought of as a constant pointer. Pointers can be used to do any operation involving array subscripting. also refers to the array element b[ 3 ].

Related questions

0 votes
1 answer
0 votes
1 answer
asked Jul 14, 2021 by pointers (160 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Jun 26, 2021 by pointertoarray (120 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked May 26, 2021 by arraysize (120 points)
0 votes
1 answer
asked May 23, 2021 by program (420 points)
0 votes
1 answer
asked May 21, 2021 by program (420 points)
...