What is a Genralised LInked List??
Please give a detailed explation of it..
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 |
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What are examples of structures?
What is C language ?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
How does pointer work in c?
What is atoi and atof in c?
4. main() { int c=- -2; printf("c=%d",c); }
In which category does main function belong??
What is c language used for?
What is #include stdio h and #include conio h?
What is the use of structure padding in c?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.