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
List some basic data types in c?
Explain what is a pragma?
Explain built-in function?
What does the c preprocessor do?
How do we open a binary file in Read/Write mode in C?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain 'bit masking'?
What are the two types of functions in c?
Explain what is wrong with this program statement?
What is operator precedence?
What is memcpy() function?
When should a type cast not be used?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Can we compile a program without main() function?
What is the difference between call by value and call by reference in c?