adplus-dvertising
frame-decoration

Question

What is the output of C Program with functions?
void funny2();
int main()
{
    printf("funny2=%d" , funny2());
    return 0;
}
void funny2()
{

}

a.

funny2=

b.

funny2=0

c.

funny2=1

d.

Compiler error

Posted under C Programming

Answer: (d).Compiler error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of C Program with functions?