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 |
Write a program to add a given duration with time(24hrs format)
What are the parts of c program?
What is the c language function prototype?
Compare and contrast compilers from interpreters.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is the benefit of using #define to declare a constant?
Do you know what are the properties of union in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Is double link list a linear data structure? If Yes, Why?If No, Why?
why 'c' is called middle level language.
What is pragma c?