In C, can you omit the parameter types of a function pointer when initializing it with the address of a declared function? – Ubuntu
I'm trying to make sure I understand the syntax for function pointers in C. I know it's just a pointer to a specific type. That being said, why does the following code compile and print '10'? (Note I'm using GCC…