what is the difference between arrays and linked list
Answer Posted / najirabanu
Array has fixed length but linked list is not have fixed
length if u store a number in array means it must have
memory space according to the number but in linked list not
neccessary memory space according to the number
In linked list one node that contain pointer,that denoted
as addrs of another node
In array should not contain addrs of another node
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the benefits of c language?
How can I write functions that take a variable number of arguments?
formula to convert 2500mmh2o into m3/hr
Which is better between malloc and calloc?
What is union and structure in c?
What is the difference between typedef struct and struct?
What is ponter?
How can you increase the allowable number of simultaneously open files?
write a program for the normal snake games find in most of the mobiles.
What are the Advantages of using macro
#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); }
Difference between Shallow copy and Deep copy?
Explain enumerated types in c language?
What is the equivalent code of the following statement in WHILE LOOP format?
What does c mean?