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 / vishnu
ur printf syntax is wrong so..u'll will get syntax error
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the difference between near, far and huge pointers?
What is meant by gets in c?
What are the different types of control structures?
Explain the difference between ++u and u++?
Is the exit() function same as the return statement? Explain.
Why use int main instead of void main?
Explain b+ tree?
Can you please explain the difference between malloc() and calloc() function?
Which is better pointer or array?
What are the disadvantages of external storage class?
How to declare a variable?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
what are bit fields in c?
What is the use of volatile?
Why is struct padding needed?