what is difference between array,strutter,union and pointers
Answer Posted / shashidhar
array can contain single data type
Structure is collection of different data types
Unions can also contain different data types, but here the
different date types share the same memory within the
computers memory
ex:
==========================
|| ||
==========================
in the above the memory between || || is shared by int,
float, double declarations in a UNION.
where as in struture || || || the memory
declared for int and float and double are different.
which implies memory utilization is better in union.
When you come to pointers, well it can point to a data type
(like int) can point to a structure (struct xyz{ };) , it
can point to a union (union item { }; ) so its like a honey
BEE it can sit on anything
| Is This Answer Correct ? | 54 Yes | 9 No |
Post New Answer View All Answers
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
a c code by using memory allocation for add ,multiply of sprase matrixes
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What does the file stdio.h contain?
What is a #include preprocessor?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Explain how do you declare an array that will hold more than 64kb of data?
How can I implement a delay, or time a users response, with sub-second resolution?
What are the types of pointers?
Explain the difference between null pointer and void pointer.
How to explain the final year project as a fresher please answer with sample project
What is class and object in c?
Does c have enums?
What does != Mean in c?
What is the difference between printf and scanf )?