C++ Program to Insert an Element in an Array2 min read

In this tutorial, we will learn and write a program to insert an element in an array in C++. To understand the coding, you should have knowledge of the following topics in C++ programming:


We will learn two ways to insert an element in an array in C++:

  1. Insert an element at the end of an array
  2. Insert an element at a specific position of an array

1. Insert an element at the end of an array

The program takes user input for the size and the values of elements of an array.

Also takes the user inputs for the value of an element to be inserted at the end of an array. Lastly, displays the new array formed after insertion.

Output:

insert element in an array in C++

2. Insert Element in Array at a Specific Position

Here too, the program takes input from the user but in addition to the above, the position at which the element is to be inserted is also taken as user input.

Output:

Enter the size of an array (Max size: 30): 5
Enter array elements:
1
2
3
4
5

Enter element to be inserted: 6
Enter the position: 3
New Array after Insertion:
1 2 6 3 4 5


MORE

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …
Read More

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …
Read More

Java Program to Find pair of Integers in Array whose sum is given Number

In this tutorial, we will write a program to find a pair of elements from an array whose sum equals a given number in java …
Read More

Program to Print Diamond Alphabet Patterns in C

In this tutorial, we will learn to write a C program to print Diamond patterns using alphabets/characters. However, in this tutorial, we will create a …
Read More

Half Diamond Pattern in C using Alphabets

In this tutorial, we will learn and code the half diamond alphabet patterns in C programming language. However, in this tutorial, we will create a …
Read More

Half Pyramid of Alphabets in C

In this tutorial, we will learn and code alphabet patterns in C programming language specifically the Half pyramid of alphabets in C programming. However, in …
Read More