Imagine I have the following simple C program:
int main() { int a=5, b= 6, c; c = a +b; return 0; }
Now, I would like to know the address of
I don't know the details, but there should be a way to make a call to a function that can then crawl the return stack for the address of the caller, and then copy and print that out.