What's the difference between a linked list and an array?
Answer Posted / ashish chauhan
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 ? | 4 Yes | 4 No |
Post New Answer View All Answers
Do string constants represent numerical values?
c program to compute AREA under integral
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Are local variables initialized to zero by default in c?
How can you determine the maximum value that a numeric variable can hold?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is class and object in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
difference between native and cross compilers
What are the storage classes in C?
What is calloc malloc realloc in c?
which is an algorithm for sorting in a growing Lexicographic order
What are the difference between a free-standing and a hosted environment?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is %g in c?