While this is stated a little vague. Usually you need an operating system which enables your computer (the actual hardware such as amotherboard, disk, RAM, etc.) to work. There are multiple operating systems. I'm currently working from Windows operating system, however Linux and the iOs operating systems are popular as well. :)
Answer:
The function is shown tin the explanation below:
Explanation:
The C or C++ function is given by the following function presentation:
# include
# include
# include
void static_allocation()
static int array[400000]; static array memory is alloted in program's data segment
void allocation_in stack_memory()
int array1[400000]; non static array memory allocation is done on stack, internally it calls alloca() to allocate which allocates from stack.
Answer:
the binary for the first one is 1101
and the binary for the second one is 10100
Explanation: