Name the part of the Process Address Space (Heap or Stack) wherethe following variables are allocated.
/* The following is a C function call. */ int foo(int x) { int a = 4; int* b = malloc( 200 ); b[0] = x + 1;
OR
OR
Name the part of the Process Address Space (Heap or Stack) wherethe following variables are allocated.
/* The following is a C function call. */ int foo(int x) { int a = 4; int* b = malloc( 200 ); b[0] = x + 1;