int test (int integer ){
int results =0 ;
results = 10 - integer;
printf("%d \n", &integer);
return results;
}
void main(){
printf("%d \n", test(1));
}
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
Activation records / stack frames are dependent on both the architecture and the platform. That said, a vaguely generic one would look like
There could be other things in there as well such as saved registers but this should give you a rough idea. |
|||
|
|
|
Google will lead you to Wikipedia, which in turn will give you the background needed to answer your question. |
|||
|
|
|
Consult the Dragon Book. |
|||
|
|
void main(). – Chris Lutz Nov 4 '09 at 6:39