Data Structure Arrays Question:
Download Questions PDF

Explain Array of pointers?

Answer:

An array of pointers is an array consisting of pointers. Here, each pointer points to a row of the matrix or an element. E.g char *array [] = {“a”, “b”}. This is an array of pointers to to characters.

Download Arrays Interview Questions And Answers PDF

Previous QuestionNext Question
What is two-dimensional array?What will be output if you will execute following c code?
#include<stdio.h>
void main(){
char arr[7]="Network";
printf("%s",arr);