what is the difference between arrays and linked list
Answer Posted / harikrishnan
an array is changable length.a list does not.
| Is This Answer Correct ? | 17 Yes | 124 No |
Post New Answer View All Answers
What are the loops in c?
How to implement a packet in C
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
What is c definition?
Can I initialize unions?
What is malloc and calloc?
What is difference between union and structure in c?
What is openmp in c?
Explain what does the format %10.2 mean when included in a printf statement?
Why do we need volatile in c?
Explain what is the benefit of using an enum rather than a #define constant?
Define VARIABLE?
How can you convert integers to binary or hexadecimal?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How can I split up a string into whitespace-separated fields?