<p><html></p> <p>Deleting an element refers to the deletion of a single element at particular location in array. We will try to delete this element using c program.</p> <p> <img src="https://s13.postimg.org/ktscruxhj/deletion_array_program.png" width="640" height="358"/></p> <h1>Program:</h1> <p><br></p> <p>#include<stdio.h></p> <p>int main()</p> <p>{</p> <p> int i,p,n,a[20],c[20];</p> <p> printf("Enter the value of n:\n");</p> <p> scanf("%d",&n);</p> <p> printf("Enter the value in 1 :\n");</p> <p> for(i=0;i<=n;i++)</p> <p> {</p> <p> scanf("%d",&a[i]);</p> <p> }</p> <p> printf("Enter the value of p:\n");</p> <p> scanf("%d",&p);</p> <p> for(i=p;i<=n;i++)</p> <p> {</p> <p> a[i]=a[i+1];</p> <p> }</p> <p> for(i=0;i<=n-1;i++)</p> <p> { printf("%d",a[i]);</p> <p>}</p> <p>}</p> <p><br></p> <p><br></p> </html>