huckleberry% a.out Enter the elements of the integer array. Use -1 to indicate the end of the array. 1 2 3 4 5 -1 The integers in array A A[0] = 1 A[1] = 2 A[2] = 3 A[3] = 4 A[4] = 5 huckleberry% huckleberry% a.out Enter the elements of the integer array. Use -1 to indicate the end of the array. 1 2 3 4 5 6 7 8 9 10 -1 The integers in array A A[0] = 1 A[1] = 2 A[2] = 3 A[3] = 4 A[4] = 5 A[5] = 6 A[6] = 7 A[7] = 8 A[8] = 9 A[9] = 10 huckleberry% huckleberry% a.out Enter the elements of the integer array. Use -1 to indicate the end of the array. 1 2 3 4 5 6 7 8 9 10 11 12 13 -1 The integers in array A A[0] = 1 A[1] = 2 A[2] = 3 A[3] = 4 A[4] = 5 A[5] = 6 A[6] = 7 A[7] = 8 A[8] = 9 A[9] = 10 A[10] = 11 A[11] = 12 A[12] = 13 huckleberry% huckleberry% a.out