What is the output of the following code?
int main()
{
int a=14;
while(a20)
{
++a;
if(a=16 && a=18)
{
continue;
}
printf("%d ", a);
}
return 0;
}

Posted on by