what is difference between array,strutter,union and pointers
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ravi
structure is collection of different data types.
union is same as the structures, the only difference is in
memory allocation.
struct
{
int a;
float b;
};
struct s;
s.a=10;
s.b=3.0;
printf("%d%f",s.a,s.b);
For the above structure it allocates 2bytes for integer
variable and 4 bytes for flaot variable. so totally it
allocates 6bytes of memory to that structure. we can print
the s.a and s.b values as 10 and 3.0
#include<stdio.h>
union
{
int a;
char ch;
}u;
u.a=100;
u.ch='a';
printf("%d\n%d",u.a,u.ch);
But incase of union, the memory allocated is maximum
memory required among the variables. so only 4 bytes is
allocated to unions.
if u try to print the u.a, u.ch values it prints 97, 97
where the value of u.a is being assigned by u.ch . so we
cannt get value of u.a at last. It wont happen incase of
structures. so mostly we use structures in programming.
| Is This Answer Correct ? | 31 Yes | 6 No |
How to print India by nested loop? I IN IND INDI INDIA
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
When a c file is executed there are many files that are automatically opened what are they files?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
what is the maximum no. of bytes calloc can allocate
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
Explain the difference between getch() and getche() in c?
plz let me know how to become a telecom protocol tester. thank you.
Explain what are the advantages and disadvantages of a heap?
What is static memory allocation?