What is the output of the following code segment?
What is the output of the following code?
What will be the output of the following code segment?
What is the output of this C code?
#include <stdio.h>
void main()
{
static int x;
if (x++ < 2)
main();
}