How many types of linked lists what are they?
How many types of data structures?
Answer Posted / deepak kumar shrivastava
There are five types of Link List
1. singly link list
2. doubly link list
3. singly circular link list
4. doubly circular link list
5. XOR link list
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the correct code to have following output in c using nested for loop?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I find out how much free space is available on disk?
What is a lookup table in c?
How do I read the arrow keys? What about function keys?
Explain why c is faster than c++?
Is c++ based on c?
what do you mean by inline function in C?
What is the use of a static variable in c?
What is the importance of c in your views?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are the parts of c program?
When should the const modifier be used?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...