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
When should we use pointers in a c program?
Explain what is the difference between functions getch() and getche()?
Is anything faster than c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
I have seen function declarations that look like this
What does printf does?
Write a program on swapping (100, 50)
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Why do we use stdio h and conio h?
What is string function c?
in iso what are the common technological language?
Is it possible to initialize a variable at the time it was declared?
What is c programing language?
Do you know the difference between exit() and _exit() function in c?
Subtract Two Number Without Using Subtraction Operator