Search Results

1
vote

Why is foo(n++, n) not working?

The order of evaluation for arguments to a function is undefined. In this case it appears that it did them right-to-left. (Modifying variables between sequence points basically allows a co …
2
votes

Should I use #define, enum or const?

Do you actually need to pass around the flag values as a conceptual whole, or are you going to have a lot of per-flag code? Either way, I think having this as class or struct of 1-bit bitfields mi …
3
votes

Best way to capture stdout from a system() command so it can be passed to another function

EDIT: misread question as wanting to pass output to another program, not another function. popen() is almost certainly what you want. System gives you full access to the shell. If you wan …
0
votes

What is the best way to produce random double on POSIX?

/dev/urandom is not POSIX, and is not generally available. The standard way of generating a double uniformly in [0,1) is to generate an integer in the range [0,2^N) and divide by 2^N. So p …
3
votes

printf + uint_64 on Solaris 9?

On a C99 compliant system: #include <inttypes.h> uint64_t big = ...; printf("%" PRIu64 "\n", big); See section 7.8 of the C99 standard. The specifi …
4
votes

Making a Nonblocking socket for WinSocks and *nix

select() is supposed to work on blocking sockets. It returns when a read() would return immediately, which is always the case with non-blocking sockets. …
-5
votes

Program only crashes as release build — how to debug?

I agree with Rolf. Because reproducibility is so important, you shouldn't have a non-debug mode. All your builds should be debuggable. Having two targets to debug more than doubles your debuggin …