A
Q. What is the output of C Program with functions?
Code:
void funny2();
int main()
{
printf("funny2=%d" , funny2());
return 0;
}
void funny2()
{
}
int main()
{
printf("funny2=%d" , funny2());
return 0;
}
void funny2()
{
}
- Correct Answer - Option(D)
- Views: 27
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.