How many types of linked lists what are they?
How many types of data structures?
Answer Posted / manojkumar
linked lists are used mainly for system side applications
as well as applications side.
I accept this answer.
But how ?Where do we have to insert?why we have to insert?
In system side means, where it is?
please explain me .
Advance thanks
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Tell me when is a void pointer used?
How can type-insensitive macros be created?
Explain what are multidimensional arrays?
can we change the default calling convention in c if yes than how.........?
What are lookup tables in c?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is meant by recursion?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Why can’t we compare structures?
What does double pointer mean in c?
What is a pointer in c?
Why cant I open a file by its explicit path?
What is static function in c?
Array is an lvalue or not?