Computer Science, asked by KiranGill5137, 1 year ago

How many levels of indirection operators can be used in c?

Answers

Answered by Rajputana007
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;
Similar questions