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 / sindhura
it gives an error ,because prinf statement not given
correctly.if the printf statement is given as printf("\t%d",i--)
then the output of the prgm will be,
5 4 3 2 1 0
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
What does c in a circle mean?
What is a c token and types of c tokens?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is realloc in c?
What is array in C
a program that can input number of records and can view it again the record
how is the examination pattern?
c language interview questions & answer
With the help of using classes, write a program to add two numbers.
What is the use of a ‘ ’ character?
Which is better pointer or array?
What is sizeof c?
Explain the bubble sort algorithm.
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......