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 / mahender
printf prints value by using format spicefiers
bt in this printf(i--);
means
error
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of using Unions?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are qualifiers in c?
Explain what are reserved words?
Can the size of an array be declared at runtime?
What is meant by type specifiers?
Explain the use of keyword 'register' with respect to variables.
write an algorithm to display a square matrix.
What are the different types of data structures in c?
With the help of using classes, write a program to add two numbers.
what do you mean by inline function in C?
Write a program to generate random numbers in c?
What is the difference between the = symbol and == symbol?
What is sizeof int?
what is the height of tree if leaf node is at level 3. please explain