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 / aparna
both of the answers are wrong
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
what is the difference between 123 and 0123 in c?
What is the easiest sorting method to use?
What are the advantages of c language?
What are volatile variables in c?
Which type of language is c?
What is the use of static variable in c?
How many types of sorting are there in c?
What is size of union in c?
Why main is not a keyword in c?
What is union and structure?
How do you do dynamic memory allocation in C applications?
What is the use of a static variable in c?
In C language what is a 'dangling pointer'?