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);
}
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