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
What are the advantages of the functions?
What is a program flowchart and how does it help in writing a program?
What is the auto keyword good for?
How do I use void main?
Explain what is the stack?
What does != Mean in c?
What is a MAC Address?
What is the use of extern in c?
Explain null pointer.
Write a program that accept anumber in 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
What is the difference between the expression “++a” and “a++”?
cavium networks written test pattern ..
What is the benefit of using const for declaring constants?
What is the advantage of using #define to declare a constant?