0
votes
Determine the size of a pipe without calling read()
On Windows you can always use PeekNamedPipe, but I doubt that's what you want to do anyway.
MSN
…
21
votes
Why does scanf() need “%lf” for doubles, when printf() is okay with just “%f”?
Because C will promote floats to doubles for functions that take variable arguments. Pointers aren't promoted to anything, so you should be using %lf or %g to read in doub …
4
votes
Strange program hang, what does this mean in debug?
If you are using MSVC and the Debug build configuration, 0xdddddddd usually means that you are attempting to access freed memory. The debug CRT memory manager fills free memory with …
4
votes
How do I programmatically return the max of two integers without…
http://www-graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
r = x - …
-1
votes
Initialisation of member inside structure
Why? Because the standard doesn't allow it.
Is it inconvenient? Yes.
MSN
…
1
vote
2
votes
Is there a way to find all the functions exposed by a dll
You need to inspect the PE header of the .dll, since that's ultimately what Windows does anyways.
Assuming you have a pointer to the .dll's IMAGE_OPTIONAL_HEADER (you can eithe …
5
votes
Am I correct that strcmp is equivalent (and safe) for literals?
Are you sure that the code is not intended to match on
"--helpmedosoemthingwithareallylongoptionname"?
MSN
…
2
votes
issue with FILE
If that is a global, then C does not support initializing it with a function call. If stdout is a macro (as suggested initially) for a function call, then you won't be able to use it t …
0
votes
How to define an object whose address is null?
I don't think there's a standard way to define something that has the address 0. Or rather, it's undefined since it would then be possible to dereference 0, which is undefined (or is it platform sp …
1
vote
The bounds on void-pointers in ANSI C89/ISO C90
I know that on Win32, 64-bit pointers are sign-extended. It's fun to inspect a 32-bit minidump from a 64-bit machine if you don't sign extend pointers.
See …
6
votes
Are global variables bad?
Yes, but you don't incur the cost of global variables until you stop working in the code that uses global variables and start writing something else that uses the code that uses global variables. B …
1
vote
C/C++ Performance Globals vs Get/Set Methods
It depends on the CPU and compiler. On at least one popular PPC chipset, loading a global variable requires extra instructions because it cannot be encoded in a 16-bit relative offset.
Plus …
0
votes
What is a trampoline function?
For C, a trampoline would be a function pointer:
size_t (*trampoline_example)(const char *, const char *);
trampoline_example= strcspn;
size_t result_1= trampoline_example("xyzbxz", …
4
votes
Is it more efficient to branch or multiply?
You could make it branchless without a multiply. It looks like for each bit set you are using that bit position as an index into an array.
First, you can easily extract bits set with:
…
