// Program: array_iteration_template.cpp // Author: ... #include int main () { // 1.b) Output every second element (starting from 0) of the // following array using pointers. int a[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; // [Your code ...] // 1.c) Output the following array in reverse order using // pointers. char b[] = {'a', 'b', 'c', 'd', 'e', 'f'}; // [Your code ...] return 0; }