active questions tagged interview+c++ - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:16:52Zhttp://stackoverflow.com/feeds/tag/interview+c++http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1720453/preparation-for-a-c-interview0Preparation for a c++ interviewjohn2009-11-12T07:10:15Z2009-11-12T08:31:24Z
<p>i have to prepare for an interview in C++ technology.
could you please drop in your suggestions and recommendations about how to start and what are the basic topics that i have to concentrate mostly on?
i have a prior knowledge on the topics but i am confused with what to concentrate on as C++/C are very vast.also i think that i have to concentrate on more data stuructures using c/C++. is that a good decicsion to do some practice on them?</p>
http://stackoverflow.com/questions/1303688/what-is-wrong-with-this-c-function-to-find-the-endianness-of-a-machine-at-runtime5What is wrong with this C function to find the endianness of a machine at runtime?sigjuice2009-08-20T02:45:41Z2009-10-21T16:55:58Z
<p>This is what I offered at an interview today.</p>
<pre><code>int is_little_endian(void)
{
union {
long l;
char c;
} u;
u.l = 1;
return u.c == 1;
}
</code></pre>
<p>My interviewer insisted that <code>c</code> and <code>l</code> are not guaranteed to begin at the same address and therefore, the union should be changed to say <code>char c[sizeof(long)]</code> and the return value should be changed to <code>u.c[0] == 1</code>.</p>
<p>Is it correct that members of a union might not begin at the same address?</p>