Our website is made possible by displaying online advertisements to our visitors.Please consider supporting us by disabling your ad blocker.
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Translate it in your own Language

Print this Job Post

Print Friendly and PDF

Thursday, May 22, 2014

C program to delete an element from an array

C programming code

#include <stdio.h>
#include<conio.h> 
void main()
{
   int array[100], position, c, n;
   clrscr();
   printf("Enter number of elements in array\n");
   scanf("%d", &n);
   printf("Enter %d elements\n", n);
   for ( c = 0 ; c < n ; c++ )
   scanf("%d", &array[c]);
   printf("Enter the location where you wish to delete element\n");
   scanf("%d", &position);
   if ( position >= n+1 )
   printf("Deletion not possible.\n");
   else
   {
      for ( c = position - 1 ; c < n - 1 ; c++ )
      array[c] = array[c+1];
      printf("Resultant array is\n");
      for( c = 0 ; c < n - 1 ; c++ )
      printf("%d\n", array[c]);
   }
   getch();
}

Output Of Program:


No comments:

Post a Comment

Copyright @ CrackMNC 2014-2024
Divas Nikhra Theme by Crack MNC