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 / sadheesh kumar.s, vlbjcas,cova
the correct answer is
4
3
2
1
0
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
How do you define a function?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is typedef example?
Why is main function so important?
what will be the output for the following main() { printf("hi" "hello"); }
Explain data types & how many data types supported by c?
How is pointer initialized in c?
What are the 5 data types?
When should you not use a type cast?
Difference between Function to pointer and pointer to function
What are the valid places to have keyword “break”?
When is a null pointer used?
Do you have any idea about the use of "auto" keyword?
What happens if a header file is included twice?
What is a memory leak? How to avoid it?