Can you tell me how to check whether a linked list is circular?
If any node seems to be pointing towards the head or starting node then the linked list is circular. If no node is pointing to null.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are 'near' and 'far' pointers?
What does a run-time "null pointer assignment" error mean?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
what is difference between ANSI structure and C99 Structure?
Write a code on reverse string and its complexity.
Do pointers store the address of value or the actual value of a variable?
write an algorithm and a program to count the number of elements in a circularly singly linked list
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What is use of pointer?
Explain is it valid to address one element beyond the end of an array?
How can you find the exact size of a data type in c?
What is a macro?