What's the difference between a linked list and an array?
Answer Posted / n.muthukumar
A linked list consists of data nodes, each pointing to the
next in the list. An array consists of contiguous chunks
memory of predetermined size.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How was c created?
What is the hardest programming language?
Why is event driven programming or procedural programming, better within specific scenario?
What are Macros? What are its advantages and disadvantages?
What is c language in simple words?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain how can I open a file so that other programs can update it at the same time?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What are conditional operators in C?
difference between native and cross compilers
What are the restrictions of a modulus operator?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Explain two-dimensional array.
What is typedef?
what is the difference between 123 and 0123 in c?