Q. What is the output of C program with functions?
Code:
int main()
{
printf("funny=%d" , funny());
return 0;
}
funny()
{
}
β
Correct Answer: (C)
funny=0