C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Print Alternate Elements In An Array
WhatsApp
Shobana J
8y
65
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
People also reading
Membership not found