C Programming - Memory Allocation - Discussion

Discussion Forum : Memory Allocation - Yes / No Questions (Q.No. 2)
2.
Can I increase the size of statically allocated array?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
13 comments Page 1 of 2.

Sai said:   1 decade ago
static is something like constant

INDU said:   1 decade ago
STATIC VALUES CANT BE CHANGE

Priya said:   1 decade ago
Once we allocated a value for a static variable it can't change its value.

Abhinandan said:   1 decade ago
For static memory is allocated on stack so you cann't change.

Sowmya said:   1 decade ago
Static means we cannot change its value.

Rakesh said:   1 decade ago
Static is unique it is does not change.

Ramu said:   1 decade ago
int a;

In static memory allocation compiler will allocates sufficient size for storing the integer and it cannot be changed.

Raji said:   1 decade ago
We never change the value of static. It always remains as constant.

Durgam_anil said:   1 decade ago
By default memory is created by the system is static memory.

Nothing but like a stack. We can't change that memory.

If any way we want change memory. Then by using device drivers program it is possible.

Praphulla said:   1 decade ago
Static means FIXED memory size so we can't change statically allocated size.


Post your comments here:

Your comments will be displayed after verification.