I let gcc compile the following example using -Wall -pedantic:
#include <stdio.h>
int main()
{
printf("main: %p\n", main);
printf("main: %p\n", (void*) main);
return 0;
}
I get:
main.c:5: warning: format ‘%p’ expects type ‘void *’, but argument 2 has type ‘int (*)()’
main.c:6: warning: ISO C forbids conversion of function pointer to object pointer type
Line 5 made my change the code like in line 6.
What am I missing to remove the warning when printing a function's address?
gcccomplaining about the newly introduced conversion type character (warning: unknown conversion type character ‘P’ in format) when compiling with option-Wall? But this also is another story ... – alk Jun 7 '12 at 15:55