Introduction
- The logic to print the alternate elements in C is very simple and we initially read the whole array elements and print the alternate elements, using a loop.
Software Requirements
- Turbo C++ OR C.
Programming
- #include < stdio.h >
- void main()
- {
- int array[10];
- int i, j, temp;
- printf("enter the element of an array \n");
- for (i = 0; i < 10; i++) scanf("%d", & array[i]);
- printf("Alternate elements of a given array \n");
- for (i = 0; i < 10; i += 2) printf("%d\n", array[i]);
- }
Explanation
- In the programming, given above, I have clearly explained how to print the alternate elements.
Output

Conclusion

Conclusion
- Thus, it is printed and executed successfully.

Join the conversation! Your thoughts help the community grow.