answersLogoWhite

0

What is the only advantage of using list in a program?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

Dyanmic memory allocation ... we can easily manipulate the data

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the only advantage of using list in a program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What advantage does flash offer as a web development tool?

The only big advantage to using flash is not having to worry too much about compatibility issues. Flash is its own separate program that loads separate from browser software.


What are advantages of stack?

some disadvantages created in stack using array then that problem solve to linked list use in stack.First advantage for size of stack not limited in linked list using.second essay to stack programme implement using only one pointer.


Is curriculum limited only to the list of subjects in a given curricular program or course offering?

1. Is curriculum limited only to the list of subjects in a given curricular program or course offering?


What is the advantage of using cDNA library in molecular genetics?

The main advantage of cDNA library is that it contains only the coding region of a genome.


What is the advantage of using a checking account?

One advantage of using a checking account is that you can pay only with money you actually have in your account, which can help you avoid overspending and getting into credit card debt.


Do you need to list a second program of study on your college application?

Only if the application asks for that information.


What are some of the advantages of using net tools?

There are almost no advantage of not using net tools. It is because net tools make life much easier. The only advantage of not using net tools is that one may save money by not buying them.


Where can you find your word processor?

The Google word processor is one component of the Google Documents program. This program can be found on the Google website. The program gets average reviews and is recommended for people who only use word processing once in a while.


What advantage does Java's break statement have over C's break statement?

They do the same thing, but only the former can be used in a Java program.


What is one advantage of using color to identify a mineral?

I know that an advantage of using color to identify a mineral is that it narrows down the number of minerals that it could be to a smaller amount. SORRY if it does not make since im only 13


What is one advantage of using color to identify color?

I know that an advantage of using color to identify a mineral is that it narrows down the number of minerals that it could be to a smaller amount. SORRY if it does not make since im only 13


C program to find only smallest numbers in the given list?

int findSmallest(int *list, int listsize) { int i; int smallest = list[0]; for(i = 1; i < listsize; i++) { if(list[i] < smallest) smallest = list[i]; } return smallest; }