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
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Write a program for finding factorial of a number.
What is the total generic pointer type?
Is main is a keyword in c?
Explain the red-black trees?
What does. int *x[](); means ?
What is the difference between procedural and declarative language?
What is static volatile in c?
Is a house a shell structure?
What is signed and unsigned?
How can I do graphics in c?
What is logical error?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
List the variables are used for writing doubly linked list program.
How do we open a binary file in Read/Write mode in C?