4.5.9 How Big Can C Variables Be?
This question specifically relates to the size of individual C objects, such as arrays or structures. The total size of all variables is another matter.
To answer this question you need to know the memory space in which the
variable is to be located. When using the -mconst-in-code
option, objects
qualified const
will be located in program memory, other objects will be
placed in data memory.