How to know the memory location for C functions?

来源: 2011-09-18 20:08:35 [旧帖] [给我悄悄话] 本文已被阅读:

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”);
}