You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
288 B
C

int main(void) {
int counter = 0;
while (counter < 21) {
++counter;
if ((counter & 1) != 0) {
/* do something when the counter is odd */
}
else {
/* do something when the counter is even */
}
}
return 0;
}