Computer Science, asked by rutvi80, 3 months ago

out of
int main()
{
int a=14;
while(a<20)
{
++a;
if(a>=16 && a<=18)
{
continue;
}
printf("%d ", a);
}
return 0;
}​

Answers

Answered by DeepakUgalePatil
1

Answer:

15 16 17 18 19

Explanation:

output will be produced something like

Answered by skgauhan
5

Answer:

15,19,20

Explanation:

see 8th and 9th line. here condition is a>=16&&a<=18 then continue ,which means it will skip all Statments when a has any value 16,17,18 so only 15,19,20 will be printed as output

Similar questions