What will be the output of this code Snippet
     #include stdio.h
int main()
{
int i = 0;
do
{
i++;
if (i == 2)
continue;
printf(" I'll come by ");
} while (i 2);
printf("%d\n", i);
}

Posted on by