...
This declaration implies that the function may take any number and type of arguments and returns a single int
. However, to conform with to the current C Standard, you programmers must explicitly prototype every function before invoking it. An implementation that conforms to the C Standard may or may not perform implicit function declarations, but C does require the implementation to issue a diagnostic if it encounters an undeclared function being used.
...