/* Print the first even number and its position of a 10 elements array/vector. */ #include #define SIZE 10 int main(){ int vec[SIZE] = {1, 5, 3, 7, 10, 1, 2, 3, 4, 5}; int i; int found = 0; /* First solution */ for(i=0; i