What's the difference between a linked list and an array?
Answer Posted / n.muthukumar
A linked list consists of data nodes, each pointing to the
next in the list. An array consists of contiguous chunks
memory of predetermined size.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is memory leak in c?
Explain what is the difference between null and nul?
What is the difference between formatted&unformatted i/o functions?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is a null pointer in c?
Why main is used in c?
What is time complexity c?
What are the header files used in c language?
Explain that why C is procedural?
how to find binary of number?
Is c programming hard?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
How can a number be converted to a string?