How many levels of indirection operators can be used in c?
Answers
Answered by
0
Let's consider the following example.
int a = 10; int *p = &a;
Similarly we can have
int **q = &p; int ***r = &q;
and so on.
For example,
int ****************zz;
int a = 10; int *p = &a;
Similarly we can have
int **q = &p; int ***r = &q;
and so on.
For example,
int ****************zz;
Similar questions
Computer Science,
8 months ago
Political Science,
8 months ago
World Languages,
8 months ago
Sociology,
1 year ago
English,
1 year ago