Computer Science, asked by aditibhalla43, 11 months ago

difference between for loop and do while loop I want in long and clear answer with examples

Answers

Answered by vidyadharrb
0
for loop having initialization conditions increment or decrement value
syntax
for(initialvalue;conditions;increment or decrement)
while loop
syntax
while
condition successful;
{
statement;
}
Similar questions