Program to Insert Element in Array C++

Insert Element in Array in C++

To insert an element in an array in C++ programming, you have to ask to the user to enter the array size and array elements and

ask to the user to enter the element (with their position) to insert the element at desired position in the array.

After inserting the element at the desired position in the array, display the new array on the screen as shown here in the following program.

C++ Programming Code to Insert Element in Array

Following C++ program ask to the user to enter array size, then ask to the user to enter array element, then ask to the user to enter element

or number to be insert, then at last it will ask to the user to enter the position (index number)

where he or she want to insert the desired element in the array, so this program insert the desired element and display the new array on the screen after inserting the element:

 

#include <iostream>

using namespace std;

int main()
{
//
int arr[50], size, insert, i, pos;
//
cout<<"enter array size:";
cin>>size;
cout<<"enter array ellement";
for(i=0; i<size; i++)
{
cin>>arr[i];

}

//
cout<<"enter elemnrt to be insert";
cin>>insert;
cout<<"At which position ?";
cin>>pos;
//
for(i=size; i>pos; i--){
arr[i]=arr[i-1];

}

//
arr[pos]=insert;
cout<<"elemnrt inserted successfully \n";
cout<<"now the new array is:\n";

//
for(i=0; i<size+1; i++)
{
cout<<arr[i]<<" ";
}
return 0;




}

 

转载于:https://www.cnblogs.com/poission/p/10905406.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值