difference between the array and linked list
general difference related to memory
Answer Posted / shravan katta
array allocated statically
linked list dynamic memory allocation
in the linked list have to remove the node at run time
but can't remove the array node
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Do you know pointer in c?
What is the difference between Printf(..) and sprint(...) ?
What is a buffer in c?
What are the types of data types and explain?
what is a function method?give example?
What is the difference between abs() and fabs() functions?
Explain what is dynamic data structure?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the difference between procedural and functional programming?
What is the function of multilevel pointer 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); }
I heard that you have to include stdio.h before calling printf. Why?
How can I implement sets or arrays of bits?
What is wrong in this statement? scanf(ā%dā,whatnumber);
write a program in c language to print your bio-data on the screen by using functions.