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 |
Define C in your own Language.
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What is #line in c?
What is a macro in c preprocessor?
difference between Low, Middle, High Level languages in c ?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What is console in c language?
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is echo in c programming?
what is used instead of pointers in java than c?
What is int main () in c?