Write a program that deletes any number from an array.

#include<stdio.h>
#include<conio.h>

void main()
{
    int n,i,a[100],p;
    clrscr();
    printf("How many numbers, you input in array : ");
    scanf("%d",&n);

    for(i=0;i<n;i++)
    {
       printf("\na[%d] = ",i+1);
       scanf("%d",&a[i]);
    }
   
    printf("\nEnter any position to delete : ");
    scanf("%d",&p);
   
    if(p<0 || p>n)
       printf("\nDelete is not possible, please give value greater than 0 & less than %d ",n);
    else
    {
       p=p-1;
       for(i=p+1;i<n;i++)
       a[i-1]=a[i];
       n--;
    }
   
    printf("\nAfter delete, Array contains : ");
    for(i=0;i<n;i++)
       printf("\n\na[%d] = %4d",i+1,a[i]);

    getch();
}

///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........