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…
Swapping 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 …
Subscribe to:
Posts (Atom)