what is the difference between arrays and linked list
Answer Posted / vky
Some of the above mention answer is nice, i would like to add some more points
Array had certain disadvantages as data storage, in an unordered array, searching is slow ,whereas in ordered array insertion is slow,In both kind of array deletion is slow
but in the case of link list it becomes very simple, like if we have to insert a new number create a new object of list and change the pointing reference
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a function in c?
How is pointer initialized in c?
What is character constants?
What is the most efficient way to store flag values?
What is function and its example?
What are global variables and explain how do you declare them?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
please explain every phase in the "SDLC" in the dotnet.
find the sum of two matrices and WAP for it.
What is a stream in c programming?
What is a global variable in c?
What is c language used for?
What are external variables in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }