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 / jinga lala
5
3
1
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is the stack in c?
Why & is used in c?
Can math operations be performed on a void pointer?
List a few unconditional control statement in c.
What is ## preprocessor operator in c?
What is infinite loop?
what is the function of pragma directive in c?
Are the variables argc and argv are always local to main?
Is fortran still used in 2018?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What does main () mean in c?
How do I swap bytes?
What are the applications of c language?
What is preprocessor with example?
What does & mean in scanf?