Computer Science, asked by balabalakumar58, 2 months ago

C++
Certificate in Programming with C & C++ - Practical
Each Question Carry Six marks
(10 * 6 = 60 marks)
1. for(i = 15; i >= 20; i++) printf("%d", i); The number of times the above for loop
will be executed is
O a)
O b) 4​

Answers

Answered by hrithik2k
1

Answer:

Zero

Explanation:

First condition will not be true.

Hence the loop will not execute and it'll not print anything.

*This is what I think*

Similar questions