- When you say to
fn() it will make a function call
- When you say to
fn it refers to the address of the function where the call should be made
So printf("%d\n\n",fn); will print the address of the address of the function actually not a random number, and printf("%d\n\n", fn()); will call the function and print what was returned.
Note the difference:
int fn (void)
{
return 10;
}
int main (void)
{
int x, y;
x = fn();
y = fn;
}
Here is the compiler output:
fn:
push ebp
mov ebp, esp
mov eax, 10
pop ebp
ret
.size fn, .-fn
.globl main
.type main, @function
main:
lea ecx, [esp+4]
and esp, -16
push DWORD PTR [ecx-4]
push ebp
mov ebp, esp
push ecx
sub esp, 20
; below code does x=fn();
call fn ; calls fn, return value in eax
mov DWORD PTR [ebp-12], eax ; stores eax in ebp-12, the location for x on the local stack allocated by compiler
; below code does x=fn;
mov DWORD PTR [ebp-8], OFFSET FLAT:fn ; stores the label address in ebp-8, the location for y on local stack allocated by compiler
add esp, 20
pop ecx
pop ebp
lea esp, [ecx-4]
ret
"%p", and, in the name of portability to strange systems, the pointer should be converted to pointer to void:printf("%p\n\n", (void*)fn);– pmg Jun 18 '11 at 10:48