Assume that the following C subroutine is built using gcc wi…

Assume that the following C subroutine is built using gcc with -m32 -O0 in the X86 seed-ubuntu-20.04. Suppose the procedure “foo” calls the procedure “bof”. The stack frame address of the caller “foo”  can be obtained by dereferencing  _________. void bof(char *str) { char buffer; strcpy(buffer,str); return; }  

Assume that the following C subroutine is built using gcc wi…

Assume that the following C subroutine is built using gcc with -m32 -O0 in the X86 seed-ubuntu-20.04. The return address of the “return;” at the end of the procedure call “bof” will be _________. void bof(char *str) { char buffer; strcpy(buffer,str); return; }