answersLogoWhite

0

Where do register variables get stored?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

Either in registers or on the stack.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where do register variables get stored?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where does global static local register variables free memory and C Program instructions get stored?

* These are all implementation defined. Access to `register' specified indentifiers should be as fast as possible, so the compiler may place the value in a machine register. However, the compiler is free to treat a `register' declaration as an `auto' declaration. * Where free memory is maintained is an OS specific concept. Instructions are generally stored in code segement. Local Variables are stored in Stack. Register variables are stored in Register. Global & static variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment.


What is the storage allocation and scope of global extern static local and register variables?

AnswerLocal Variables are stored in Stack. Register variables are stored in Register. Global variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment and the extern variables also stored in data segment. Nooo NoooStatic variable will be stored in .BSS segment... (Block Started By Symbol)


Where does global variables stored in C?

It depends entirely on what platform you are using. In an embedded environment, for instance global/static variables go into different RAM memory segments depending on whether or not they are initialised. constants are often left in ROM automatic variables are normally placed of the stack of the currently running task but not always.


Where auto variables are stored?

Auto variables are stored on the stack alongside all other local variables.


Where dynamic variables are stored?

Dynamic variables are stored in a memory heap allocated to them at run time.


What are register variables?

A register variables is that which got space in CPU internal register sets this requst can be granted or rejected by CPU ,by register veriable the processing speed become much faster for that variable.


What is the scope of register variables?

The block they are declared in.


Where does Local Variables get stored in?

Stack.


Is global variables are stored in registers?

They is not.


Local Variables will get stored in?

Stack.


Memory allocation of variables declared in a program is?

in register


HOW CAN WE REGISTER THE VARIABLES INTO A SESSION?

$_SESSION['name'] = "RAGHAV";