a linear linked list such that the link field of its last node points to the first node instead of containing NULL

a) linked list

b) circular linked list

c) sequential linked list

d) none


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


What is a node in c?

0 Answers  


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

1 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?

4 Answers  


What does 4d mean in c?

0 Answers  


What is the purpose of void pointer?

0 Answers  


What is #line?

0 Answers  


i need all types of question paper releted to "c" and other language.

0 Answers  


Can you tell me how to check whether a linked list is circular?

1 Answers  


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


When is a null pointer used?

0 Answers  


Categories