In C, what is the meaning of following function prototype with empty parameter list.
void fun();
Function can only be defined without any parameter.
Function can be defined with any number of parameters of any types.
Function can be defined with any number of integer parameters.
Function can be defined with one integer parameter.
This question is part of this quiz :
Functions in C