what is difference between array and structure?
Answer Posted / vinay
Array -
* Memory (array size) is fixed
* Accessing an element in array takes constant time. E.g. -
5th element in an array can be accessed as array[4] i.e.
searching/accessing an element in array takes comparatively
less time than in structures.
* Adding/deleting an element in the array is comparatively
difficult since the data already present in the array needs
to be moved
Structure -
* Memory (structure size) can be changed dynamically
* Accessing an element in a list takes more time
comparatively since we need to traverse thro the list
* Adding/deleting takes less time than in arrays
| Is This Answer Correct ? | 208 Yes | 28 No |
Post New Answer View All Answers
What is the explanation for the dangling pointer in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is an array in c?
Explain enumerated types in c language?
What are the 5 data types?
What is the use of void pointer and null pointer in c language?
What is the difference between text files and binary files?
Is there a way to jump out of a function or functions?
Is that possible to store 32768 in an int data type variable?
Explain what is the difference between functions getch() and getche()?
What is the purpose of main() function?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain how can I prevent another program from modifying part of a file that I am modifying?
Write a program to implement queue.
What is a stream?