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 / abhishek roy
Yes there is syntax error in printf statement but if write
printf("%d",i--)then The output for the given for loop is
5 3 1.
it is 100 % write....
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of getchar() function?
difference between object file and executable file
What is 2c dna?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is character set?
Write a Program to find whether the given number or string is palindrome.
how could explain about job profile
Explain how can you check to see whether a symbol is defined?
Why main is not a keyword in c?
What’s the special use of UNIONS?
What is a program flowchart?
What are loops in c?
What would be an example of a structure analogous to structure c?
Explain how do you override a defined macro?
What are the 5 data types?