Is it correct to write:
void g(void f(int i));
(I know that most of the time it's written: void g(void (*f)(int i)),
but the compiler doesn't mind the first one, too. Is it correct by the
standart?)
void g(void f(int i));
(I know that most of the time it's written: void g(void (*f)(int i)),
but the compiler doesn't mind the first one, too. Is it correct by the
standart?)
Comment