Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
share|improve this question
409  
If that ever becomes a real issue for you, you are doing something very wrong. – ThiefMaster Apr 10 '12 at 10:38
182  
You can keep adding levels of pointers until your brain explodes or the compiler melts - whichever happens soonest. – JeremyP Apr 10 '12 at 10:52
27  
Since a pointer to a pointer is again, well, just a pointer, there shouldn't be any theoretical limit. Maybe the compiler won't be able to handle it beyond some ridiculously high limit, but well... – Christian Rau Apr 10 '12 at 10:59
62  
If you meet a 3-star programmer let us know. – Peter Wood Apr 10 '12 at 11:54
34  
with the newest c++ you should use something like std::shared_ptr<shared_ptr<shared_ptr<...shared_ptr<int>...>>> – josefx Apr 10 '12 at 14:09
show 16 more comments

12 Answers

The C standard specifies the lower limit:

5.2.4.1 Translation limits

276 The implementation shall be able to translate and execute at least one program that contains at least one instance of every one of the following limits: [...]

279 — 12 pointer, array, and function declarators (in any combinations) modifying an arithmetic, structure, union, or void type in a declaration

The upper limit is implementation specific.

share|improve this answer
80  
The C++ standard "recommends" that an implementation support at least 256. (Readability recommends that you not exceed 2 or 3, and even then: more than one should be exceptional.) – James Kanze Apr 10 '12 at 10:52
18  
This limit is about how many in a single declaration; it does not impose an upper bound on how much indirection you can achieve via multiple typedefs. – Kaz Apr 10 '12 at 11:37
7  
@Kaz - yes, that is true. But since the spec is (no pun intended) specifying a mandatory lower limit, it is the effective upper bound all spec-compliant compilers are required to support. It could be lower than the vendor-specific upper bound, of course. Rephrased differently (to align it with the OP's question), it is the maximum allowed by the spec (anything else would be vendor-specific.) A bit off the tangent, programmers should (at least in the general case) treat that as their upper limit (unless they have a valid reason to rely on a vendor-specific upper bound)... me thinks. – luis.espinal Apr 10 '12 at 16:00
3  
On another note, I would start to cut myself if I had to work with code that had long-ass dereferencing chains (specially when liberally peppered all over the place.) – luis.espinal Apr 10 '12 at 16:03
5  
@BlueRaja-DannyPflughoeft: This isn't an issue with SO, with the rep system, or our user base. This is all Reddit's fault! – Will Apr 12 '12 at 14:01
show 2 more comments

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.

struct list { struct list *next; ... };

now you can have list->next->next->next->...->next. This is really just multiple pointer indirections: *(*(..(*(*(*list).next).next).next...).next).next. And the .next is basically a noop when it's the first member of the structure, so we can imagine this as ***..***ptr.

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. :)

share|improve this answer
14  
That's a completely different issue, though - a struct containing a pointer to another struct is very different than a pointer-pointer. An int***** is a distinct type from an int****. – fluffy Apr 11 '12 at 17:22
1  
It is not "very" different. The difference is fluffy. It is closer to syntax than semantics. A pointer to a pointer object, or a pointer to a structure object which contains a pointer? It's the same kind of thing. Getting to the tenth element of a list is ten levels of addressing indirection. (Of course, the ability to express an infinite structure depends on the struct type being able to point to itself via the incomplete struct type so that list->next and list->next->next are the same type; otherwise we would have to construct an infinite type.) – Kaz Apr 11 '12 at 18:28
7  
I didn't consciously notice that your name is fluffy when I used the word "fluffy". Subsconscious influence? But I am sure I have used the word in this way before. – Kaz Apr 11 '12 at 18:29
2  
Also remember that in machine language, you could just iterate on something like LOAD R1, [R1] as long as R1 is a valid pointer at every step. There are no types involved other than "word which holds an address". Whether or not there are declared types doesn't determine the indirection and how many levels it has. – Kaz Apr 12 '12 at 3:56
2  
Not if the structure is circular. If R1 holds the address of a location which points to itself then LOAD R1, [R1] can be executed in an infinite loop. – Kaz Apr 19 '12 at 19:11
show 3 more comments

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:

— 12 pointer, array, and function declarators (in any combinations) modifying an arithmetic, structure, union, or void type in a declaration.

This specifies the lower limit that every implementation must support. Note that in a footenote the standard further says:

18) Implementations should avoid imposing fixed translation limits whenever possible.

share|improve this answer
11  
indirections don't overflow any stacks! – Basile Starynkevitch Apr 10 '12 at 10:37
8  
How does the stack relate to pointer indirection? – Péter Török Apr 10 '12 at 10:38
1  
Corrected, I had this errie feeling of reading & answering the q as limit of parameters being passed to the function. I don't know why?! – Alok Save Apr 10 '12 at 10:39
2  
@basile - I'd expect stack-depth to be an issue in the parser. Many formal parsing algorithms have a stack as a key component. Most C++ compilers probably use a variant of recursive descent, but even that relies on the processor stack (or, pedantically, on the language acting as if there was a processor stack). More nesting of grammar rules means a deeper stack. – Steve314 Apr 11 '12 at 0:14
2  
indirections don't overflow any stacks!--> No! parser stack can overflow. How does the stack relate to pointer indirection? Parser stack! – Pavan Manjunath Apr 11 '12 at 7:15
show 1 more comment

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 size = 10 and looking in ptr.cpp if it's not immediately obvious.)

g++ create.cpp -o create ; ./create > ptr.cpp ; g++ ptr.cpp -o ptr ; ./ptr

create.cpp

#include <iostream>

int main()
{
    const int size = 200;
    std::cout << "#include <iostream>\n\n";
    std::cout << "int main()\n{\n";
    std::cout << "    int i0 = " << size << ";";
    for (int i = 1; i < size; ++i)
    {
        std::cout << "    int ";
        for (int j = 0; j < i; ++j) std::cout << "*";
        std::cout << " i" << i << " = &i" << i-1 << ";\n";
    }
    std::cout << "    std::cout << ";
    for (int i = 1; i < size; ++i) std::cout << "*";
    std::cout << "i" << size-1 << " << \"\\n\";\n";
    std::cout << "    return 0;\n}\n";
    return 0;
}
share|improve this answer
53  
I couldn't get more than 98242 when I tried it. (I did the script in Python, doubling the number of * until I got one that failed, and the preceding one that passed; I then did a binary search over that interval for the first one that failed. The whole test took less than a second to run.) – James Kanze Apr 10 '12 at 11:31
You should change this to open the file, find the variable size, increment it, then save and compile again. :D it runs itself. may be more complex though. – Cole Johnson Aug 22 '12 at 22:58

Sounds fun to check.

  • Visual Studio 2010 (on Windows 7), you can have 1011 levels before getting this error:

    fatal error C1026: parser stack overflow, program too complex

  • gcc (Ubuntu), 100k+ * without a crash ! I guess the hardware is the limit here.

(tested with just a variable declaration)

share|improve this answer
2  
Indeed, the productions for unary operators are right-recursive, which means that a shift-reduce parser will shift all of the * nodes onto the stack before being able to make a reduction. – Kaz Apr 10 '12 at 19:15

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."

int i = 0;

int *ip01 = & i;

int **ip02 = & ip01;

int ***ip03 = & ip02;

int ****ip04 = & ip03;

int *****ip05 = & ip04;

int ******ip06 = & ip05;

int *******ip07 = & ip06;

int ********ip08 = & ip07;

int *********ip09 = & ip08;

int **********ip10 = & ip09;

int ***********ip11 = & ip10;

int ************ip12 = & ip11;

************ip12 = 1; /* i = 1 */

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.

share|improve this answer
24  
You sir, have read too much theoretical books. There is always a limit, and hopefully it is documented. – Matthieu M. Apr 10 '12 at 11:00
7  
There's almost certainly a limit, since the compiler has to keep track of the information in a finite amount of memory. (g++ aborts with an internal error at 98242 on my machine. I expect that the actual limit will depend on the machine and the load. I also don't expect this to be a problem in real code.) – James Kanze Apr 10 '12 at 11:12
1  
Yeah @MatthieuM. : I just considered theoretically :) Thanks James for completing answer – Nandkumar Tekale Apr 10 '12 at 11:20
2  
Well, linked lists aren't really a pointer to a pointer, they're a pointer to a struct that contains a pointer (either that or you end up doing a lot of unnecessary casting) – Random832 Apr 10 '12 at 13:58
1  
@Random832: Nand said 'If you mean "How many levels of pointer indirection can you have at runtime,"' so he was explicitly removing the restriction of just talking about pointers to pointers (*n). – LarsH Apr 10 '12 at 15:46
show 3 more comments

It's actually even funnier with pointer to functions.

#include <cstdio>

typedef void (*FuncType)();

static void Print() { std::printf("%s", "Hello, World!\n"); }

int main() {
  FuncType const ft = &Print;
  ft();
  (*ft)();
  (**ft)();
  /* ... */
}

As illustrated here this gives:

Hello, World!
Hello, World!
Hello, World!

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.

share|improve this answer

There is no limit. A pointer is a chunk of memory whose contents are an address.
As you said

int a = 10;
int *p = &a;

A pointer to a pointer is also a variable which contains an address of another pointer.

int **q = &p;

Here q is pointer to pointer holding the address of p which is already holding the address of a.

There is nothing particularly special about a pointer to a pointer.
So there is no limit on chain of poniters which are holding the address of another pointer.
ie.

 int **************************************************************************z;

is allowed.

share|improve this answer

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:

typedef int *type0;
typedef type0 *type1;
typedef type1 *type2; /* etc */

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.

share|improve this answer

Rule 17.5 of the 2004 MISRA C standard prohibits more than 2 levels of pointer indirection.

share|improve this answer

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

Quote from C2:

Three Star Programmer

A rating system for C-programmers. The more indirect your pointers are (i.e. the more "*" before your variables), the higher your reputation will be. No-star C-programmers are virtually non-existent, as virtually all non-trivial programs require use of pointers. Most are one-star programmers. In the old times (well, I'm young, so these look like old times to me at least), one would occasionally find a piece of code done by a three-star programmer and shiver with awe. Some people even claimed they'd seen three-star code with function pointers involved, on more than one level of indirection. Sounded as real as UFOs to me.

share|improve this answer

You can use a unlimited number of '*'s.

The symbol '*' is used to declare a pointer on a variable. For example:

int x = 15;
int *y = & x;

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, y is another variable that takes the address of the variable x, but even y is a variable, so you can point on it:

(int *)*z = &y; 

or

int **z = &y; 

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:

int **************t  = &(&(&(&(&(&(&(&(&(&(&(&z))))))))))); // 14 '*' XD
share|improve this answer
12  
What should the compiler return for &(&z), let alone 14 levels of those? It needs to be a pointer pointing to some memory address storing the address of z, are you saying your compiler actually accepts that code, i.e., allocates memory holding the pointer for you? Would that be heap or stack memory? (Note: §6.5.3.11 of C99 does not allow &(&z), presumably exactly for this reason. You need something like your y above.) – Christopher Creutzig Apr 10 '12 at 11:10
10  
The above answer is complete nonsense &(&x) is an invalid expression - &x is the address where x is stored at runtime - &(&x) makes no sense because you are asking where a numerical constant is stored - it is not stored anywhere, it exists abstractly... One might as well ask for &0 - where is the constant 0 stored? it isn't stored anywhere! Here is what VC says : error C2102: '&' requires l-value – rep_movsd Apr 11 '12 at 8:41

protected by Alok Save Apr 16 '12 at 7:22

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.