Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Print Alternate Elements In An Array
WhatsApp
Shobana J
8y
64.6
k
0
0
25
Blog
prt.zip
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
Thus, it is printed and executed successfully.
Array
Print Alternate Elements
Up Next
C Program To Print Pascal Triangle
Ebook Download
View all
Printing in C# Made Easy
Read by 22.3k people
Download Now!
Learn
View all
Membership not found