I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
feedback
|
|
How they are stored is an implementation detail (depends on the compiler). For example, in the GCC compiler, on most machines, read-only variables, constants, and jump tables are placed in the text section. | |||||||||
feedback
|
|
Consider the code:
Generally, If the compiler is convinced the The constant (if it is a constant, is it still a variable?) Note that I forced the variables to appear because I passed them by reference - presumably to a function expecting a pointer to a constant integer. If the addresses were never taken, then (Stylistically - the variables | |||||
feedback
|
|
Depending on the data segmentation that a particular processor follows, we have five segments: 1) Code Segment - Stores only code, ROM 2) BSS (or Block Started by Symbols) segment - Stores initialised global and static variables 3) Stack segment - stores all the local varialbles and other informations regarding function return address etc 4) Heap segment - all dynamic allocations happens here 5) Data segment - stores uninitialised global and static variables Note that the difference b/w BSS and data segment is that the former store initialized global and static varialbes and the later stores UNinitialised ones. Now, Why am I talking about the data segmentation when I must be just telling where are the constant variables stored... there's a reason to it... Every segment has a write protected region where all the constants are stored. For example, if I have a const int which is local variable, then it is stored in the write protected region of stack segment. and if I have a global that is initialised const var, then it is stored in BSS and if I have an uninitialised const var, then it is stored in data segment... To summarize, "const" is just a data QUALIFIER, which means that first the compiler has to decide which segment the variable has to be stored and then if the variable is a const, then it qualifies to be stored in the write protected region of that particular segment. I hope this would clarify most of the misunderstandings.... :-) Any further comments are welcome... :-) | |||
|
feedback
|
|
Usually they are stored in read-only data section (while global variables' section has write permissions). So, trying to modify constant by taking its address may result in access violation aka segfault. But it depends on your hardware, OS and compiler really. | |||||||||
feedback
|
|
This is mostly an educated guess, but I'd say that constants are usually stored in the actual CPU instructions of your compiled program, as immediate data. So in other words, most instructions include space for the address to get data from, but if it's a constant, the space can hold the value itself. | |||
|
feedback
|
|
Depends on your compiler, your system capabilities, your configuration while compiling.
| |||
|
feedback
|
|
offcourse not , because 1) bss segment stored non inilized variables it obviously another type is there.
2) data segment is initlaized variables it has 3 types ,
i mention above small and large means depents upon complier for example small means < than 8 bytes and large means > than 8 bytes and equal values. but my doubt is local constant are where it will stroe?????? | |||
|
feedback
|
|
Global and constant are two completely separated keywords. You can have one or the other, none or both. Where your variable, then, is stored in memory depends on the configuration. Read up a bit on the heap and the stack, that will give you some knowledge to ask more (and if I may, better and more specific) questions. | |||
|
feedback
|
|
Some constants arfen't even stored. Consider the following code: | |||
feedback
|
|
It may not be stored at all. Consider some code like this:
This enables the programmer to gather the idea of what is going on, but the compiler can optimize away some of that, and most compilers do, by evaluating constant expressions at compile time, which means that the value PI may not be in the resulting program at all. | |||
|
feedback
|