How many types of linked lists what are they?
How many types of data structures?
Answer Posted / ruchi singh
there are four types of linked list ,these are given below:
1.linear singly linked list
2.circular singly linked list
3.two way or doubly linked list
4.cicular doubly linked list
| Is This Answer Correct ? | 39 Yes | 3 No |
Post New Answer View All Answers
how logic is used
What are the advantage of c language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Why do we use & in c?
What are local static variables?
Why c is a procedural language?
What is indirection? How many levels of pointers can you have?
Explain 'far' and 'near' pointers in c.
Explain goto?
What is #error and use of it?
What the advantages of using Unions?
How do you determine the length of a string value that was stored in a variable?
Why is void main used?