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.
|
|
|
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;
|
|
}
|