Tagged Questions

76
votes
7answers
6k views

Why isn't sizeof for a struct equal to the sum of sizeof of each member?

Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
69
votes
18answers
4k views

Where do I find the current C or C++ standard documents?

For many questions, especially for C-related ones, the answer seems to be found in "the standard". However, where do we find that - online? Googling can sometimes feel futile, again especially for the ...
50
votes
11answers
6k views

What is the difference between a definition and a declaration?

As title says, the meaning of both eludes me.
39
votes
5answers
2k views

Undefined, unspecified and implementation-defined behavior

What is the difference between undefined, unspecified, and implementation-defined behavior in C and C++?
33
votes
7answers
4k views

Why is volatile not considered useful in multithreaded C or C++ programming?

As demonstrated in this answer I recently posted, I seem to be confused about the utility (or lack thereof) of volatile in multi-threaded programming contexts. My understanding is this: any time a ...
30
votes
11answers
1k views

What is the point of function pointers?

I have trouble seing the utility of the function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a ...
9
votes
5answers
331 views

What to watch out for when converting a std::string to a char* for C function?

I have read many posts asking the question on how to convert a C++ std::string or const std::string& to a char* to pass it to a C function and it seems there is quite a few caveat's in regards to ...
9
votes
7answers
2k views

Is array name a pointer in C?

Is an array's name a pointer in C? If not, what is the difference between an array's name and a pointer variable?