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 would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


what is the coding of display the factorial of a number using array and function?

1 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


What is c programing language?

0 Answers  


What does %p mean c?

0 Answers  






Is it better to use a macro or a function?

0 Answers  


What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }

7 Answers  


Explain continue keyword in c

0 Answers  


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


Explain what is a program flowchart and explain how does it help in writing a program?

0 Answers  


Is there anything like an ifdef for typedefs?

0 Answers  


what is void pointer?

1 Answers   Wipro,


Categories