What is the output of the program

     #include stdio.h
int main()
{
int i = 0;
do
{
i++;
if (i == 3)
continue;
printf("congrats");
} while (i 2);
printf("%d\n", i);
}

Posted on by