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 / sarvagya sharma
all the above answers are wrong i have written this program
into turbo c++ and here is what i got the output
5
4
3
2
1
0
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Explain the use of 'auto' keyword
Why main function is special give two reasons?
How do you determine the length of a string value that was stored in a variable?
Explain a file operation in C with an example.
Define circular linked list.
What is a pragma?
Explain how do you override a defined macro?
Are the expressions * ptr ++ and ++ * ptr same?
What are the rules for the identifier?
What are the benefits of organizational structure?
What is this infamous null pointer, anyway?
What does char * * argv mean in c?
What is function and its example?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is c programing language?