Q. In C, what is the meaning of following function prototype with empty parameter list
Code:void fun()
{
/* .... */
}
β
Correct Answer: (C)
Function can be called with any number of parameters of any types
void fun()
{
/* .... */
}
You must be Logged in to update hint/solution