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 / hope
Here is the correct answer. I have written this program
into my program. I run it and got the following output:
5
4
3
2
1
0
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Are the variables argc and argv are always local to main?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Is array a primitive data type in c?
what is the role you expect in software industry?
How many types of arrays are there in c?
about c language
Describe the difference between = and == symbols in c programming?
how to introdu5ce my self in serco
What is the significance of c program algorithms?
What are pointers? Why are they used?
Is there a built-in function in C that can be used for sorting data?
What is the difference between exit() and _exit() function?
How do you do dynamic memory allocation in C applications?
What does node * mean?
Explain what is the difference between #include and #include 'file' ?