What will be the output of the following C code?
#include stdio.h
int main()
{
void foo();
printf("1 ");
foo();
}
void foo()
{
printf("2 ");
}

Posted on by