Mention the four important part of looping.
Explain in detail the four important part of looping in detail with explain.
- 3720 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 02 अप्रैल
- 0 टिप्पणी
-
- How will you print “Hello World” without semicolon?
- Explain the difference between while loop and do-while loop.
- Left Shift and Right Shift Operators in C
- Write a program to calculate the following series:
- Лучшие игры 3d на Андроид
- Write a program to read the marks of 50 students in a class and display the following:
- How to dynamically allocate a 2D array in C?
- Is C++ better than C sharp? Explain your answer
- What is structured programming?
- What are preprocessor directives in c language?
मॉक परीक्षण अभ्यास के लिए
c programming
The four important type of loop is :br /The setup: Usually the setup involves declaring and initializing an incrementvariable. This generally occurs immediately before the while.br /The test expression: The expression within the while loop that will cause the program to either execute the loop or exit and continue on. This always occurs within the parentheses following the keyword while.br /The body: This is the code within the braces.br /The increment: This is where the increment variable is incremented. This usually occurs at the end of the body.