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 does 1f stand for?
Can you write a programmer for FACTORIAL using recursion?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
What is data type long in c?
What is the heap in c?
Differentiate between new and malloc(), delete and free() ?
Differentiate call by value and call by reference?
1. main() { printf("%d",printf("HelloSoft")); } Output?
Where are some collections of useful code fragments and examples?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.