what is the difference between arrays and linked list
Answer Posted / priya
All elements of array stored in contiguous memory location.
While in case of linked list each node does not stored in
contiguous memory location
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the difference between variable declaration and variable definition in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What does return 1 means in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is calloc malloc realloc in c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain what is #line used for?
What is the difference between functions getch() and getche()?
which type of aspect you want from the student.
Compare and contrast compilers from interpreters.
Can you subtract pointers from each other? Why would you?
Does sprintf put null character?
What is the maximum no. of arguments that can be given in a command line in C.?
What is the difference between exit() and _exit() function?