What is the output of the following code?

int main()
{
int a=0, b=20;
if(!(!a) && a)
    printf("%d",a++);
else
    printf("%d",b--);
}

Posted on by