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
What is pointer in c?
Is Exception handling possible in c language?
What is a pragma?
How is actual parameter different from the formal parameter?
Differentiate between a structure and a union.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is storage class?
If you know then define #pragma?
ATM machine and railway reservation class/object diagram
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Is there anything like an ifdef for typedefs?
how can I convert a string to a number?
What is the use of a ‘ ’ character?
can anyone please tell about the nested interrupts?
Write a program to reverse a linked list in c.