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
int main()
{
printf("funny=%d" , funny());
return 0;
}
funny()
{
}
You must be Logged in to update hint/solution