What's the difference between a linked list and an array?
Answer Posted / presto
An array is simply a collection of variables of similar
datatype while a linklist is a collection of nodes where
each node is a combination of a data value and pointer to
another record.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is union in c?
What is the difference between the local variable and global variable in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is pass by reference in functions?
What is getch() function?
What are valid signatures for the Main function?
What the different types of arrays in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Is c compiled or interpreted?
When would you use a pointer to a function?
What are data types in c language?
What are terms in math?
What are different storage class specifiers in c?
Can you think of a logic behind the game minesweeper.
Explain what does the format %10.2 mean when included in a printf statement?