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

Posted on by