what is the difference between arrays and linked list

Answer Posted / karthikeyan

array
for one type of data ( like int array , char array )
memory should be kept in track and managed by the user.

linked list for multiple type of data

Is This Answer Correct ?    4 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you initialize pointer variables?

605


What is ponter?

768


Can you write the function prototype, definition and mention the other requirements.

655


What is binary tree in c?

617


What does. int *x[](); means ?

629






What is time complexity c?

562


Difference between macros and inline functions? Can a function be forced as inline?

703


What is main () in c language?

590


What is the Purpose of 'extern' keyword in a function declaration?

645


What is structure of c program?

599


What is the use of printf() and scanf() functions?

625


What are loops c?

614


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2697


What are data structures in c and how to use them?

669


Dont ansi function prototypes render lint obsolete?

601