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 is the difference between Printf(..) and sprint(...) ?
What is ambagious result in C? explain with an example.
How macro execution is faster than function ?
What is string function in c?
What is bubble sort technique in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Can a function argument have default value?
What is output redirection?
How can you increase the size of a dynamically allocated array?
Dont ansi function prototypes render lint obsolete?
I have seen function declarations that look like this
What are the features of the c language?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the purpose of 'register' keyword in c language?