What will be the output of the following?
main( )
{
static int a = 3;
printf(“%d”, a- -);
if (a)
main( );
}
1
3
2
3 2 1
3
3 3 3
4
Program will fall in continuous loop and print 3
5
Question Not Attempted
What will be the output of the following?
main( )
{
static int a = 3;
printf(“%d”, a- -);
if (a)
main( );
}