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
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
i got 75% in all semester am i eligible for your company
Explain what’s a signal? Explain what do I use signals for?
All technical questions
What are the types of functions in c?
What is use of integral promotions in c?
What is the difference between scanf and fscanf?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How do you generate random numbers in C?
What are # preprocessor operator in c?
what is the format specifier for printing a pointer value?
Why is #define used?
What language is windows 1.0 written?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
How can I read/write structures from/to data files?