Answer:
d) do..for
Step-by-step explanation:
In C there are 3 types of loops.
1) For Loop
for(int i=0; i<10; i++){
cout<<i;
}
2) While Loop
int i=0;
while(i<10){
cout << i;
i++;
3) Do While Loop
do {
cout<< i;
} while(i<10);
7.6m questions
10.2m answers