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 / subha raman
sorry..please ignore the above answer..
the operation is "i--" =>post decrement,fist do the
operation and then decrement.
so the output will be:
5
| Is This Answer Correct ? | 5 Yes | 14 No |
Post New Answer View All Answers
How do you define structure?
Do you know null pointer?
Can a local variable be volatile in c?
Why does the call char scanf work?
What is define directive?
What is a static function in c?
Describe the difference between = and == symbols in c programming?
What are pointers? Why are they used?
What is typedef example?
When should the const modifier be used?
What is #error and use of it?
How can you access memory located at a certain address?
Is c easy to learn?
Where local variables are stored in c?
What the advantages of using Unions?