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
What is the difference between %d and %i?
Explain what are linked list?
What is the difference between a string and an array?
write a program to insert an element at the specified position in the given array in c language
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Write a Program to find whether the given number or string is palindrome.
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
How do you sort filenames in a directory?
What is difference between constant pointer and constant variable?
How to avoid buffer overflow?
How can a string be converted to a number?
Suggesting that there can be 62 seconds in a minute?