In this program, we need to print the elements of the array which are present in odd positions. This can be accomplished by looping through the array and printing the elements of an array by incrementing i by 2 till the end of the array is reached.
In the above array, the elements present on odd positions are a, c and e.
Algorithm
- STEP 1: START
- STEP 2: INITIALIZE arr[] = {1, 2, 3, 4, 5}
- STEP 3: PRINT "Elements of given array present on odd position:"
- STEP 4: REPEAT STEP 5 for(i=0; i< arr.length; i= i+2)
- STEP 5: PRINT arr[i]
- STEP 6: END
Program:
Output: