How many pointers (*) are allowed in a single variable?
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;
|
The
The upper limit is implementation specific. |
|||||||||||||||||||||
|
|
Actually, C programs commonly make use of infinite pointer indirection. One or two static levels are common. Triple indirection is rare. But infinite is very common. Infinite pointer indirection is achieved with the help of a struct, of course, not with a direct declarator, which would be impossible. And a struct is needed so that you can include other data in this structure at the different levels where this can terminate.
now you can have There is really no limit on this because the links can be traversed with a loop rather than a giant expression like this, and moreover, the structure can easily be made circular. Thus, in other words, linked lists may be the ultimate example of adding another level of indirection to solve a problem, since you're doing it dynamically with every push operation. :) |
|||||||||||||||||||||
|
|
Theoretically: You can have as many levels of indirections as you want. Practically: Of course, nothing that consumes memory can be indefinite, there will be limitations due to resources available on the host environment. So practically there is a maximum limit to what an implementation can support and the implementation shall document it appropriately. So in all such artifacts, the standard does not specify the maximum limit, but it does specify the lower limits. Here's the reference: C99 Standard 5.2.4.1 Translation limits:
This specifies the lower limit that every implementation must support. Note that in a footenote the standard further says:
|
|||||||||||||||||||||
|
|
As people have said, no limit "in theory". However, out of interest I ran this with g++ 4.1.2, and it worked with size up to 20,000. Compile was pretty slow though, so I didn't try higher. So I'd guess g++ doesn't impose any limit either. (Try setting
create.cpp
|
|||||||
|
|
Sounds fun to check.
(tested with just a variable declaration) |
|||||
|
|
There is no limit, check example here. The answer depends on what you mean by "levels of pointers." If you mean "How many levels of indirection can you have in a single declaration?" the answer is "At least 12."
If you mean "How many levels of pointer can you use before the program gets hard to read," that's a matter of taste, but there is a limit. Having two levels of indirection (a pointer to a pointer to something) is common. Any more than that gets a bit harder to think about easily; don't do it unless the alternative would be worse. If you mean "How many levels of pointer indirection can you have at runtime," there's no limit. This point is particularly important for circular lists, in which each node points to the next. Your program can follow the pointers forever. |
|||||||||||||||||||||
|
|
It's actually even funnier with pointer to functions.
As illustrated here this gives:
And it does not involve any runtime overhead, so you can probably stack them as much as you want... until your compiler chokes on the file. |
|||
|
|
|
There is no limit. A pointer is a chunk of memory whose contents are an address.
A pointer to a pointer is also a variable which contains an address of another pointer.
Here There is nothing particularly special about a pointer to a pointer.
is allowed. |
||||
|
|
|
Note that there are two possible questions here: how many levels of pointer indirection we can achieve in a C type, and how many levels of pointer indirection we can stuff into a single declarator. The C standard allows a maximum to be imposed on the former (and gives a minimum value for that). But that can be circumvented via multiple typedef declarations:
So ultimately, this is an implementation issue connected to the idea of how big/complex can a C program be made before it is rejected, which is very compiler specific. |
|||
|
|
|
Rule 17.5 of the 2004 MISRA C standard prohibits more than 2 levels of pointer indirection. |
|||
|
|
|
Every C++ developer should have heard of the (in)famous Three star programmer And there really seems to be some magic "pointer barrier" that has to be camouflaged
|
||||
|
|
|
You can use a unlimited number of '*'s. The symbol '*' is used to declare a pointer on a variable. For example:
Here x is an integer variable. When you put the symbol '&' after a variable, you mean that you want to get the logic address in memory of this variable. So,
or
z is another variable that contains the address of the variable z and for that you can use an unlimited number of * (pointers). For example:
|
|||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
std::shared_ptr<shared_ptr<shared_ptr<...shared_ptr<int>...>>>– josefx Apr 10 '12 at 14:09