C++ stack frame - how to create it?

How can I create a stack frame for this function and how would it look like ?

float ChangeToCelsius (float farenheit)
{
return (static_cast<float> (5) / 9) * (farenheit - 32);
}

closed account (48bpfSEw)
you'll find answers on stackoverflow

http://stackoverflow.com/questions/16088040/understanding-stack-frame-of-function-call-in-c-c

http://programmers.stackexchange.com/questions/195385/understanding-stack-frame-of-function-call-in-c-c

and other sites...
Last edited on
Topic archived. No new replies allowed.