How much is size of struct having 1 char & 1 integer?
Answer Posted / shahbaz
as the size of char in C++ and C is one byte and the size of
int in C++,c is 2 byte so when we illl call that struct then
the memory will assigned the contents of these char and
int's variables
But
Char in C# and java is of 16 bit and in is of 32 bits and
double of 64 bits so the size of struct is depends upon
these languages.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is Destructor in C++?
Explain the use of vtable.
What is the use of ::(scope resolution operator)?
Is c++ a difficult language?
How a macro differs from a template?
How a modifier is similar to mutator?
Explain queue. How it can be implemented?
Explain the uses oof nested class?
Write about the stack unwinding?
Can user-defined object be declared as static data member of another class?
How can you link a c program with a c function?
What flag means?
what is Loop function? What are different types of Loops?
What is pair in c++?
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?