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 / mahender
printf prints value by using format spicefiers
bt in this printf(i--);
means
error
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you print only part of a string?
Explain what is the difference between a string and an array?
What do you mean by keywords in c?
What is the difference between #include and #include 'file' ?
What is openmp in c?
How reliable are floating-point comparisons?
What is getch() function?
What is ctrl c called?
What is the difference between void main and main in c?
Explain the difference between exit() and _exit() function?
Explain what are linked list?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Dont ansi function prototypes render lint obsolete?
What is zero based addressing?
How can I determine whether a machines byte order is big-endian or little-endian?