Posts by cpfp • 103 points
1 post
-
0
votes1
answer297
viewsQ: Stack Frame - Example
I’m developing a program to simulate a Stack, however I’m having some difficulties in understanding how it works, can I correct this example? main(int y) { int j; f(j+1); } f(int x) { int i; return…