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 / binz
Answer is
5
3
1
But you should change your printf statement to printf("%d",
i--);
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
can any one tel me wt is the question pattern for NIC exam
Explain the concept and use of type void.
Is sizeof a keyword in c?
Write the control statements in C language
Explain indirection?
What is void c?
What is masking?
Does sprintf put null character?
what are enumerations in C
What are header files and explain what are its uses in c programming?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is the difference between malloc() and calloc() function in c language?
What is the purpose of main() function?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?