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
Explain threaded binary trees?
largest Of three Number using without if condition?
Can we declare variables anywhere in c?
difference between native and cross compilers
how to create duplicate link list using C???
What is the size of enum in c?
Where are c variables stored in memory?
What is the maximum length of an identifier?
Explain about block scope in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Write a program to print all permutations of a given string.
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Can a pointer be volatile in c?
Who developed c language?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings