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

how to set Nth bit of variable by using MACRO

3 Answers   HCL,


There seem to be a few missing operators ..

0 Answers  


What are header files and explain what are its uses in c programming?

0 Answers  


What is meant by operator precedence?

0 Answers  


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  






What does 3 periods mean in texting?

0 Answers  


what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }

2 Answers   Google,


Explain why can’t constant values be used to define an array’s initial size?

0 Answers  


What is meaning of tree

0 Answers  


How to develop software using "c" programming?

1 Answers   IBM, TCS,


What is the difference between declaring a variable by constant keyword and #define ing that variable?

1 Answers  


let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................

8 Answers  


Categories