How many times "AI" will be printed after the execution of the following code...


#includestdio.h
void main()
{
int i;
for(i=0; i=7; i++)
{
if(i 5)
continue;
else
break;
printf("AI");
}
}

Posted on by