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
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