how does the for loop work actually..suppose for the
following program how it ll work plz explain to me
for(i=5;i>=0;i--)
prinf(i--);
Answer Posted / binz
Answer is
5
3
1
But you should change your printf statement to printf("%d",
i--);
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is variable initialization and why is it important?
What are global variables?
How many keywords (reserve words) are in c?
How a string is stored in c?
What is the use of header?
Can you please explain the difference between syntax vs logical error?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is the difference between text and binary i/o?
How to Throw some light on the splay trees?
What are the different types of pointers used in c language?
Describe the modifier in c?
What are the three constants used in c?
Why is c platform dependent?
application attempts to perform an operation?
What is c programing language?