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
4
Answer:
option c)once
pls mark as brainliest ♥♥
Similar questions