Why does the following print 1. I was expecting it to print the address of the function pointer.
#include <stdio.h>
int main(main) {
printf("%i",main);
return 0;
}
|
Why does the following print
|
|||
|
Pointers must be printed with |
|||||||||||
|
|
Because the first argument of a program's Many people traditionally use
If you remove the parameter, you might get what you want:
If that doesn't work, try declaring If THAT doesn't work, ask yourself why you're doing this in the first place. :-P |
|||
|
|
|
you declared a param with the name " |
|||
|
|
|
The first parameter to main is usually called |
|||
|
|
|
This is equivalent to
So |
|||
|
|
|
You include |
|||
|
|
mainwouldn't be anint, so due to the%iyou'd have undefined behaviour anyway - all bets are off, it may as well go eat your IDE's logfile and print the first number it finds it it. – delnan Jul 25 '11 at 19:15