Hello,
Well i am new to the whole disassembly thing and if someone could explain me the process that someone follows to get the address of a function i would be grateful.
For example i compiled a simpile program that looks like thing:
Code:
#include <iostream>
void myfunc(void)
{
std::cout << "Hello world" << std::endl;
}
int main(int argc, char *argv[])
{
myfunc();
return 1;
}
So, if i would like to find out the address of the "myfunc" function inside my compiled executable what is the first thing that i should look for?
I have decent knowledge of assembly and c++, my only problem is that starting from zero i can't track down a function's address.
Thanks in advance.