What are the three parts that make up a loop structure?

Answer:
There are mainly 2 parts of a loop structure

1. Condition of termination
2. body of loop


Example of while loop:

while (condition_is_true){
body of loop;
}


Example of do-while loop:

do{
body of loop;
}while (condition_is_true);

Initialization is not part of loop structure.
First answer by Ashraful CSE. Last edit by Ashraful CSE. Contributor trust: 1 [recommend contributor recommended]. Question popularity: 1 [recommend question].