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 do you mean by enumeration constant?
How can I convert a number to a string?
When should the volatile modifier be used?
Explain what is meant by 'bit masking'?
Write a C program to count the number of email on text
What is the use of getchar() function?
What are pointers? What are different types of pointers?
How do you do dynamic memory allocation in C applications?
What is data structure in c programming?
Compare and contrast compilers from interpreters.
What tq means in chat?
How can I recover the file name given an open stream?
what do you mean by inline function in C?
Explain the difference between getch() and getche() in c?
How can I write functions that take a variable number of arguments?