✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#define SIZE 10
int main() {
int arr[SIZE] = {12, 7, 8, 3, 14, 25, 30, 9, 18, 21};
for (int i = 0; i < SIZE; i++) {
if (!(arr[i] % 2 == 0)) {
printf("%x ", arr[i]);
}
}
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!