Input :
How many numbers = 5
a[1] = 47
a[2] = 81
a[3] = 98
a[4] = 78
a[5] = 36
Enter any position to insert : 9
Output :-
Insert is not possible, please give value greater than 0 & less than 5
Input :
How many numbers = 5
a[1] = 47
a[2] = 81
a[3] = 98
a[4] = 78
a[5] = 36
Enter any position to insert : 3
Enter any number to insert : 123
Output :-
a[1] = 47
a[2] = 81
a[3] = 123
a[4] = 98
a[5] = 78
a[6] = 36