what is link list?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
list are the set of items which are brought from various
parts and binded together in which each data may or may not
be having relation..... linked list is basically set of
data 's which has link (locative address) to refer the next
data of that list...
thank u
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi joshi
Linked list is a data structure where data is logically
viewed as contiguous and helps user in systematically
storing and retrieving the data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / srinivasu
linked list is distributed memory locations.In this linked
list we have to insert the elements and delete the elements
that means insertion and deletion is possible.And in this
linked list all elements are stored in heap.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is signed and unsigned?
write a c program to find largest of three numbers using simple if only for one time.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Explain the bubble sort algorithm.
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
How does selection sort work in c?
Is c easy to learn?
Can a variable be both static and volatile in c?
What is Bitwise Operator and how it works?
What are qualifiers in c?
How do you initialize pointer variables?