c puzzle #3

What's the expected output for the following program and why?
enum {false,true};

int main()
{
        int i=1;
        do
        {
                printf("%d\n",i);
                i++;
                if(i < 15)
                        continue;
        }while(false);
        return 0;
}

1 comment:

  1. #include is missing. if added we will get 1 .

    ReplyDelete

Your answer for the question

Related Posts Plugin for WordPress, Blogger...