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


Please Help Members By Posting Answers For Below Questions

How can I read in an object file and jump to locations in it?

573


What is a function in c?

569


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1502


Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)

5791


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

645






Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1492


How is pointer initialized in c?

581


What are different types of pointers?

561


Compare and contrast compilers from interpreters.

679


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

976


What is the role of this pointer?

545


What is unary operator?

657


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1539


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

774


What is ctrl c called?

588