Write a program that deletes any number from an array.

Input :  

How many numbers, you input in array : 5

a[1] = 47

a[2] = 81

a[3] = 98

a[4] = 78

a[5] = 36

Enter any position to delete : -8

Output :- 

Delete is not possible, please give value greater than 0 & less than 5

Input :  

How many numbers, you input in array : 5

a[1] = 47

a[2] = 81

a[3] = 98

a[4] = 78

a[5] = 36

Enter any position to delete : 3

Output :- 

After delete, Array contains :

a[1] = 47

a[2] = 81

a[3] = 78

a[4] = 36