Hello all.
I want to find the return address where execution should jump after returning from a function.
Say this is my code:
void foo(){
}
int main(){
foo();
printf("After foo..");
return 0;
}
After foo() returns, how to find the rturn address where control will be passed?
Thank you....