Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 15 Online
OpenStudy (tasreeb):

let me know about the implementation of algorithm(deleting an item from a linear array)

OpenStudy (anonymous):

main() { int a[20],k,item,n,j,i; clrscr(); printf("Enter how many elements"); scanf("%d",&n); printf("\nenter the %d elements\n",n); for(i=0;i<n;i++) { scanf("%d", &a[i]); } printf("enter the location\n"); scanf("%d",&k); k--; item=a[k]; printf("Deleted item is=%d\n",item); j=k; while(j<=n) { a[j]=a[j+1]; j++; } n--; printf("\n After Deletion of an array is \n"); for(i=0;i<n;i++) printf("\t%d",a[i]); getch(); } program code for what have you asked

OpenStudy (tasreeb):

thanks...

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!