Which uses less memory?
a)
struct astruct
{
int x;
float y;
int v;
};
b)
union aunion
{
int x;
float v;
};
c)
char array[10];
Answer Posted / guest
Ans is B)
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Is overriding possible in c++?
why is c++ called oops? Explain
What is rvalue?
How do you define/declare constants in c++?
what are the events occur in intr activated on interrupt vector table
what is C++ exceptional handling?
What is microsoft c++ redistributable?
Can constructor be private in c++?
Why is the function main() special?
Can a list of string be stored within a two dimensional array?
What is an undefined reference/unresolved external symbol error and how do I fix it?
Explain about Garbage Collector?
Can constructor be static in c++?
What is ctime c++?
What is array in c++ example?