Friday, July 31, 2009

How many levels of pointers can be handled at a time in C Language for different types of compilers?

To my knowloedge, the answer is that it depends on the types of pointers and the memory available and the kernel itself. Think about it as the weakest link problem. If you have run out of memory to allocated a pointer, it will fail. Alternatively, if you kernel limits your file pointers (such as linux) with a hard limit, you will also find the allocation to fail. Generally, you should consider this limitation by learning about the kernel you are developing on and the amount of dynamic memory it can allocate.

How many levels of pointers can be handled at a time in C Language for different types of compilers?
32

online survey

No comments:

Post a Comment