hello everyone..
int fun()
{
/* anything */
}
int main(void)
{
fun();
}
in this program, when the control is transferred to function fun()..
the return address is pushed to the stack..
Is it possible to access this value..??
int fun()
{
/* anything */
}
int main(void)
{
fun();
}
in this program, when the control is transferred to function fun()..
the return address is pushed to the stack..
Is it possible to access this value..??
Comment