0
votes
unsigned char
char and unsigned char aren't guaranteed to be 8-bit types on all platforms—they are guaranteed to be 8-bit or larger. Some platforms have …
6
votes
Variable declarations in header files - static or not?
The static and extern tags on file-scoped variables determine whether they are accessible in other translation units (i.e. other .c or .cpp files …
10
votes
Why use c strings in c++?
A couple more memory control notes:
C strings are POD types, so they can be allocated in your application's read-only data segment. If you declare and define std::string consta …
2
votes
What coding techniques do you use for optimising C programs?
Measure performance.
Use realistic and non-trivial benchmarks. Remember that "everything is fast for sm …
1
vote
Finding the name of a variable in C
#define count 1 is a very bad idea, because it prevents you from naming any variables or structure fields count.
For example:
void copyString(char …
3
votes
On Win32 how do you move a thread to another cpu core?
If you could call a function that returns a number indicating what CPU the thread is running on, without using affinity, the answer would often be wrong as soon as the function returned. So checkin …
5
votes
## in Macros
Here's a gotcha that I ran into when upgrading to a new version of a compiler:
Unnecessary use of the token-pasting operator (##) is non-portable and may generate unde …
3
votes
In **portable C**, how to launch a command connecting the command’s stdin to the launcher’s stdout?
The Microsoft C runtime calls it _popen instead of …
9
votes
C/C++ source file after preprocessing
cl.exe, the command line interface to Microsoft Visual C++, has three different options for outputting the preprocessed file (hence the inconsistency in the previous responses about Vi …
2
votes
Changing type of 32-bit variable to 64-bit variable?
Is your code assuming that incrementing a 32-bit variable is an atomic operation? Incrementing a 64-bit variable on a 32-bit CPU probably won't be atomic unless you go out of your way to make it so …
4
votes
Is this a reasonable use of the ternary operator?
As litb mentioned in the comments, this isn't valid C++. GCC, for example, will emit an error on this code: …
2
votes
Why is runtime library a compiler option rather than a linker option?
One side effect of the C preprocessor definitions like _DLL and _DEBUG that zdan mentioned:
Some data structures (such as STL containers and iterators) may be size …
0
votes
Strange assembly from array 0-initialization
Some quick testing indicates that Microsoft's x86 compiler generates different assembly if the initializer list is empty, compared to when it contains a zero. Maybe their ARM compiler does too. Wha …
1
vote
Concatenating two memory buffers without memcpy.
This question seems to ask whether it is possible to concatenate the contents of two buffers (A and B) with the following constraints:
You can't copy the contents of A or B.
…
0
votes
Reconciling classes, inheritance, and C callbacks
Could your callback choose an instance based on a and/or b? If so, then register your library support classes in a global/static map and then have callbackADispatch( …
