Define circular linked list.



Define circular linked list...

Answer / Kunal Bharti

A circular linked list is a type of linked list where the last node's next pointer points back to the first node, creating a 'circle'. This allows traversing through the entire list in a continuous manner without having a clear end. In memory management, it can be useful when dealing with fixed-size buffers or limited resources.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What does %c mean in c?

1 Answers  


How can I split up a string into whitespace-separated fields?

1 Answers  


what is the difference between getch() and getche()?

7 Answers   Infosys,


sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?

2 Answers  


What is the difference between functions getch() and getche()?

1 Answers  


Describe explain how arrays can be passed to a user defined function

1 Answers  


what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }

1 Answers  


What's the best way to declare and define global variables?

7 Answers  


what is the difference between declaration ,defenetion and initialization of a variable?

7 Answers   LG Soft,


What is extern c used for?

1 Answers  


what is c++ programming?

3 Answers   TCS,


where do we use volatile keyword?

1 Answers  


Categories