How does the following program stores the variable value ?
value
int main() { double value = 1.0; }
It uses a static memory allocation on the stack
It uses a dynamic memory allocation on the stack
It uses a static memory allocation on the heap
It uses a dynamic memory allocation on the heap