What will be the output of the following Code?
Posted: Thu Jul 14, 2022 9:11 am
void main()
{
static a,b;
while(a > b++)
}
a) a=0 b=0
b) a=0 b=0
c) a=1 b=1
d) none of the mentioned
{
static a,b;
while(a > b++)
}
a) a=0 b=0
b) a=0 b=0
c) a=1 b=1
d) none of the mentioned