Explain the difference between while loop and do-while loop.
Explain the difference between while loop and do-while loop.Different ways of using for loop.
- 4444 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- Mention the four important part of looping.
- How will you print numbers from 1 to 100 without using loop?
- Is C++ better than C sharp? Explain your answer
- Why C language is introduced? Explain your answer
- What are preprocessor directives in c language?
- Should I learn C before C++? Explain your answer
- Бесплатные программы
- Who invented C C++ and Java? Explain your answer
- How will you print “Hello World” without semicolon?
- What is C used for? Explain your answer
Practice Mock Test
c programming
A do while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block, or not, depending on a given boolean condition at the end of the block.br /But while is entry controlled…that means it enters the loop only when the test condition is true other wise it exits the loop.