What is the output of the following C code?

#include stdlib.h
#include stdio.h
enum {false, true};
int main()
{
int i = 1;
do
{
printf("%d\n", i);
i++;
if (i 15)
continue;
}
while (false);
getchar();
return 0;
}

Posted on by