What will be the output of the following program
#include stdio.h
int foo();
int main()
{
int i = foo();
}
foo()
{
printf("2 ");
return 2;
}

Posted on by