Computer Science, asked by kmanjinder054, 9 months ago

what is memory allocated to arrays : compile time or run time​

Answers

Answered by preetygirl97
2

Answer:

Memory allocated at compile-time means the compiler resolves at compile-time where certain things will be allocated inside the process memory map. For example, consider a global array: ... The program assumes that it has its own entire memory space (From 0x00000000 to 0xFFFFFFFF for example).

Similar questions