printing the function call stack
If I do this,
printf( "%p\n%p\n%p\n%p\n%p\n%p\n%p\n%p\n" );
does it print the function call stack from low memory to high memory(top-down) or from high memory to low memory(bottom up)?
Parameters are pushed right to left in C++. On Intel, the stack grows downwards in memory.
Topic archived. No new replies allowed.