Main(){ int x=5; clrscr(); for(;x==0;x--) { printf("x=%dn”", x--); }}

A) none of the above
B) 0, 1, 2, 3, 4
C) 1, 2, 3, 4, 5
D) 4, 3, 2, 1, 0
Explanation: prints nothing, as condition x==0 is False

Showing Answers 1 - 5 of 5 Answers

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions