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 / aparna
both of the answers are wrong
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What are pointers? Why are they used?
If fflush wont work, what can I use to flush input?
Why is extern used in c?
How can I swap two values without using a temporary?
What is zero based addressing?
What is difference between Structure and Unions?
How can I sort a linked list?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is sizeof c?
What is an lvalue?
Is null always equal to 0(zero)?
Should I learn c before c++?
What is a void pointer? When is a void pointer used?
Is it fine to write void main () or main () in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?