what is the use of using linked list and array?
Answer Posted / manju
In Linked list we can insert or delete the elements at any
position,which is not possible in arrays and arrays are of
fixed size,but linked lists are not have a definite length.
we can dynamically allocate the size of linked list with
out wastage of memory...
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Can you subtract pointers from each other? Why would you?
What is a structure member in c?
What is chain pointer in c?
What is a wrapper function in c?
How can I change their mode to binary?
How can I use a preprocessorif expression to ?
How would you rename a function in C?
What is difference between array and pointer in c?
What is meant by initialization and how we initialize a variable?
Sir i need notes for structure,functions,pointers in c language can you help me please
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain bitwise shift operators?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
I need a sort of an approximate strcmp routine?
What are types of functions?