Q. What is the output of C Program with functions?
Code:
void funny2();
int main()
{
printf("funny2=%d" , funny2());
return 0;
}
void funny2()
{
}
β
Correct Answer: (D)
Compiler error