- #1
amaresh92
- 163
- 0
greetings,
what is the meaning of controlled loop and count controlled loop?
advanced thanks.
what is the meaning of controlled loop and count controlled loop?
advanced thanks.
while (1)
{
// do something
}
while (response != 'Y' && response != 'y')
{
printf("Do you want to continue?");
response = getch();
}
i = 0;
while (i < 5)
{
printf("%d\n", i);
i++;
}