Computer Science, asked by rajmanivimal, 17 days ago

for (i=5; i == 8; i++) print i *

Answers

Answered by nanub
2

It won't print any thing

The value of i is initialised as 5 and the condition is checked.

As 5 is not equal to 8 the program exit the loop and nothing is printed.

Similar questions