Consider the following C program:
int x = 0;
void main( )
{
int y = x;
if (x++ < 2)
{
printf ("%d"',x);
main ( );
}
printf ("%d"',y)
}
What is the output of above code?