What will be the output of the following program?
   #include stdio.h
int main()
{
int i = 1;
if (i++ && (i == 1))
printf("Yes\n");
else
printf("No\n");
}

Posted on by