Ramanathan wrote on 04/09/04 :
> What is the difference between the following declarations?
> void funct();
This is a function declaration. It indicates the name of the function
and the return type, but nothing about the type and number of
parameters (unspecified). It's usage is not recommended.
> void funct(void);
This is a detached function prototype that indicates the name of the
function, the return type, and that the function accepts no parameters
at all.
--
Emmanuel
The C-FAQ:
http://www.eskimo.com/~scs/C-faq/faq.html
The C-library:
http://www.dinkumware.com/refxc.html
"C is a sharp tool"