Computer Science, asked by Mrinmoyeedattagupta, 4 months ago

which option stores variable of the same type​

Answers

Answered by navdeepkaur240306
1

Answer:

Variables are usually stored in RAM. This is either on the heap (e.g. all global variables will usually go there) or on the stack (all variables declared within a method/function usually go there). Stack and Heap are both RAM, just different locations. Pointers have different rules.

Explanation:

thank you ❤️.....

Similar questions