what is the use of using linked list and array?
Answer Posted / ananth
By using the linked list we can allocate definite memory
space for variables.But in array cannot allocate definite
memory space.
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Here is a good puzzle: how do you write a program which produces its own source code as output?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
How many types of functions are there in c?
Explain what is the difference between the expression '++a' and 'a++'?
What does stand for?
What is use of bit field?
What are the different data types in C?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
a c code by using memory allocation for add ,multiply of sprase matrixes
What is the purpose of 'register' keyword in c language?
What is the purpose of & in scanf?
How can I implement sets or arrays of bits?
How can my program discover the complete pathname to the executable from which it was invoked?
What is the difference between mpi and openmp?
If fflush wont work, what can I use to flush input?