Please draw the memory layout of all the process created by the following program when the process is at LINE A. Explicitly show all the memory regions (text, data, stack and heap) for each process and display the variables and their respective values as stored in each region. Also, what will be printed on the screen at the end of this program? #include #include #include int SIZE = 4; int k=10; void printlt(int *m) { int i=0; for (i=0; i
Previous question