9) The following code should print whether a given integer is odd or even: switch (value % 2 ) { case 0: printf("Even in
Posted: Mon Jun 06, 2022 5:11 pm
9) The following code should print whether a given integer is odd or even: switch (value % 2 ) { case 0: printf("Even integer\n" case 1: printf("Odd integer\n" ); }