Is there any size limitation for C structure ? if some can any one tell what is there limitation.
|
|
From the C standard:
Other than that, the upper bound is |
||||
|
|
|
Since the You can determine the value of
This is what the compiler should allow. What the runtime environment allows is another story. Declaring a similarly sized object on the stack (locally) in practice will not work since the stack is probably much, much smaller than Having such an object globally might make the executable loader complain at program startup. |
|||||||||||||||||
|