TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Insert Element In An Array
Shobana J
Jul 17, 2016
12
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog, I am going to explain how to insert the element in an array.
INSERT.zip
Introduction
In this blog, I am going to explain about " insert the element in an array"
Software Requirement
Turbo C++ OR C.
Programming
#include < stdio.h >
int
main()
{
int
array[100], position, c, n, value;
printf(
"Enter number of elements in array\n"
);
scanf(
"%d"
, & n);
printf(
"Enter %d elements\n"
, n);
for
(c = 0; c < n; c++) scanf(
"%d"
, & array[c]);
printf(
"Enter the location where you wish to insert an element\n"
);
scanf(
"%d"
, & position);
printf(
"Enter the value to insert\n"
);
scanf(
"%d"
, & value);
for
(c = n - 1; c >= position - 1; c--) array[c + 1] = array[c];
array[position - 1] = value;
printf(
"Resultant array is\n"
);
for
(c = 0; c <= n; c++) printf(
"%d\n"
, array[c]);
return
0;
}
Explanation
By the programming, it is clearly understood how a user can insert an element in an array.
Output
Conclusion
Thus, the program can be printed and executed successfully.
Insert Element
Array
C
Next Recommended Reading
Print Alternate Elements In An Array