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 |
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What are signals in C?
Explain what is the difference between the expression '++a' and 'a++'?
What is difference between scanf and gets?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
what is the difference between c and c++?
What does the && operator do in a program code?
What is a good data structure to use for storing lines of text?
c programming of binary addition of two binary numbers
Can a pointer be null?
What are the types of pointers?
what is the difference between exit() and _exit() functions?