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
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is an expression?
a program that can input number of records and can view it again the record
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What are the types of functions in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
what are bit fields? What is the use of bit fields in a structure declaration?
How can type-insensitive macros be created?
Is python a c language?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is nested structure with example?
Tell us something about keyword 'auto'.
Why c is procedure oriented?
What's the best way of making my program efficient?
What is modeling?