// Week 3 Lecture 2 example // Arrays of integers // Create an array of ints // Print them out // Find the sum // Find the average // Print the even ones // Multiply all elements by 10 // Create another array scan them in #include #define SIZE_NUMBERS 6 #define SIZE_MORE 4 #define SIZE_ZEROS 10 int main(void) { int numbers[] = {2, 5, -8, 4, 1, 9}; //int more_numbers[SIZE_MORE]; //int zeros[SIZE_ZEROS] = {}; // Print the array (while then convert to for) int i = 0; while (i