All Questions
1 question
1
vote
1
answer
257
views
x86 Procedure Call Memory Allocation
So I have a problem from my textbook (Computer Systems: A Programmer's Perspective Problem 3.64):
It gives code like this:
typedef struct {
int a;
int *p;
} str1;
typedef struct {
int sum;
int ...