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 |
Explain indirection?
Can you please explain the difference between exit() and _exit() function?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
Do you know what is the purpose of 'extern' keyword in a function declaration?
When would you use a pointer to a function?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
how logic is used
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
i got 75% in all semester am i eligible for your company
What is keyword in c?
What are the 32 keywords in c?
What is meant by global static? why we have to use static variable instead of Global variable