How to know the memory location for C functions?
Suppose I have the following C program under Linux. When I run the program, how should I know where the function main() and Foo() are loaded in the physical memory?
int main()
{
Foo();
exit(0);
}
Foo()
{
printf(“hello world\n”);
}