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
Write the syntax and purpose of a switch statement in C.
What's the right way to use errno?
What is volatile keyword in c?
Explain the difference between #include "..." And #include <...> In c?
What is the difference between a free-standing and a hosted environment?
How can a program be made to print the line number where an error occurs?
What are types of functions?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the purpose of the preprocessor directive error?
Is there any possibility to create customized header file with c programming language?
What is #include stdio h?
How macro execution is faster than function ?
What is the benefit of using #define to declare a constant?
Why do we use int main?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers