What is a Genralised LInked List??
Please give a detailed explation of it..
Answer Posted / mailkbala
Generally, there are two kind of linked list.
i) Single Linked List and
ii) Double Linked List.
In single Linked List, you can move only in forward
direction using the address of the next node. Each node
contains two fields namely Data and Address of Next node.
In Double Linked List, you can move in both forward and
reverse direction using the address of the next node and
previous node respectively. Here each node contains three
fields namely Data, Address of next node, and Address of
Previous node.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the uses of a pointer?
Explain the difference between ++u and u++?
What is main function in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between ++a and a++?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Can you please explain the difference between malloc() and calloc() function?
Explain zero based addressing.
Explain what is dynamic data structure?
What are the scope of static variables?
If you know then define #pragma?
What are variables and it what way is it different from constants?
What are structures and unions? State differencves between them.
How can I get back to the interactive keyboard if stdin is redirected?