How much is size of struct having 1 char & 1 integer?
Answer Posted / raja
you will have to study through structure padding concepts.
It depends on the compiler.
struct
{
char a;
int b;
}
The above struct size will be 8 in standard compilers (Turbo
C is a non-standard compiler). bcoz between a and b there
will be 3 pad bytes placed..
Refer this link you will know everything about structure
padding..All d best :)
http://www.allinterview.com/showanswers/62991.html
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What kind of jobs can I get with c++?
What are the main features of c++?
What is polymorphism in c++? Explain with an example?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What are the advantages of inheritance in c++?
What do the keywords volatile and mean mutable?
can any one help to find a specific string between html tags
which is changed to a sting..
weather.html looks (for location) is
Can a Structure contain a Pointer to itself? What are vectors used for in c++? What is setbase c++? Do vectors start at 0? What are pointer-to-members? Explain. What does the ios::ate argument do? What is the use of function pointer? Explain virtual destructor?