Computer Science, asked by adityaraj1447, 9 months ago

How many times the message Hello will be printed in the following program ?

void main ( )

{

int x;

for(x=–1; x<=10; x++)

{

if (x<5) continue; else break;

printf(“Hello”);

}

}


a)    11 times    b)    10 times

c)    once    d)    0 times.

Answers

Answered by Anonymous
4

Answer:

option c)once

pls mark as brainliest

Similar questions