How many times does the loop execute ?
#includestdio.h
int main()
{
int m = 5;
int i = 0;
for(;;)
{
if(i m)
break;
printf("i = %d\n",i);
i++;
}
return 0;
}



Posted on by