what is the difference between arrays and linked list
Answer Posted / prabhjot singh
array is easy to understand bt linked list -very difficult .
| Is This Answer Correct ? | 15 Yes | 15 No |
Post New Answer View All Answers
What are the different types of control structures in programming?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is main () in c?
What is size of union in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Define recursion in c.
What is data structure in c programming?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the purpose of sprintf?
What is %s and %d in c?
What is malloc calloc and realloc in c?
In C language what is a 'dangling pointer'?
program to convert a integer to string in c language'
Why do we use null pointer?
What is %lu in c?