How many types of linked lists what are they?
How many types of data structures?
Answer Posted / deepak nagpal
There are three types of linked lists-
1.singly linked list
2.doubly linked list
3.circular linked list
There are six types of data structurs-
1.linked list
2.array
3.stack
4.queues
5.tree
6.graphs
Is This Answer Correct ? | 43 Yes | 9 No |
Post New Answer View All Answers
What is equivalent to ++i+++j?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
please give me some tips for the placement in the TCS.
Mention four important string handling functions in c languages .
What are lookup tables in c?
What are the different data types in C?
Explain 'far' and 'near' pointers in c.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
In c programming language, how many parameters can be passed to a function ?
Write a simple code fragment that will check if a number is positive or negative.
Why do we use main function?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
what is the significance of static storage class specifier?
Why can’t we compare structures?
When should the const modifier be used?