Delete an element from array at desired positionDelete an element from array at desired position

C program for delete an element at desired position in an array #include int  main(){   int  a[50],i,pos,size;   printf("\nEnter size of the array: ");   scanf("%d",&size);   printf("\nEnter %d eleme…

Read more »
04 Aug 2015

Swapping of two arraysSwapping of two arrays

Swapping of two arrays in C !  #include int main(){   int a[10],b[10],c[10],i;   printf("Enter First array->");   for(i=0;i   scanf("%d",&a[i]);   printf("\nEnter Second array->");   for(i=0;i       …

Read more »
04 Aug 2015
 
Top