in Technology by

What is an array of pointers?

1 Answer

0 votes
by

It is basically an array of the pointer variables. It is also known as pointer arrays.

Declaration of an array of pointers:

data_type *arrar_name[array_size];

Example,

int *arr[5];

Here “arr” is an array of  5 integer pointers.

Related questions

0 votes
    What are the advantages of using an array of pointers to string instead of an array of strings?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the difference between pointer to an array and array of pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    I have Conversation classes with a members relation attribute pointing to User class. This members attribute consists ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 24, 2022 in Education by JackTerrance
0 votes
    I wrote a C# function of DLL that returns a byte pointer that points to an array of pointers that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 3, 2022 in Education by JackTerrance
0 votes
    An ____________ consists of a search-key value and pointers to one or more records with that value as ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    The ___ algorithm scans each index for pointers to tuples that satisfy an individual condition. (a) A2 (b ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    How is Pointers subtraction in C?...
asked Jan 24, 2021 in Technology by JackTerrance
0 votes
    When should we use pointers in a C program?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Can we perform arithmetic operation on pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Where can the function pointers be used?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the advantage of pointers in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What ais the use of void pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the difference between near, far and huge pointers?...
asked Jan 21, 2021 in Technology by JackTerrance
0 votes
    Is that possible to add pointers to each other?...
asked Jan 21, 2021 in Technology by JackTerrance
0 votes
    What is void or Generic pointers in C?...
asked Jan 21, 2021 in Technology by JackTerrance
...