while

suggest change

Introduces a while loop.

int i = 0;
// print 10 asterisks
while (i < 10) {
    putchar('*');
    i++;
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents