by forceface
Random Numbers
|
|
[6 replies] Last: If you're looking for random number between 0 and 1 just calculate r... (by Muckle ewe)
|
by coercedman66
knowing when to do round error correction
|
|
[1 reply] : You should probably read a bit about how floating point numbers are re... (by kbw)
|
Difference amongst macro NULL an '\0' character |
|
[6 replies] Last: http://stackoverflow.com/questions/2759845/why-is-address-zero-used-fo... (by cire)
|
by newer69
optimization of this algorithm?
|
|
[10 replies] Last: and, by the way, the first optimisation IS NOT included by your first ... (by viliml)
|
by aryu
I dont know how to do this.. Anyone please
|
|
[4 replies] Last: tyty (by aryu)
|
by even821
output and input to/from file?
|
|
[6 replies] Last: thanks mate :) (by even821)
|
by mmccarty12
iostream equivalent of printf("% N.Me", arg);
|
|
[2 replies] Last: Took me some time but I figured it out. #include <iostream> #include... (by mmccarty12)
|
by Enforcer83
Passing a string to ofstream
|
|
[4 replies] Last: So for backwards compatability with older compilers use: // Cast... (by Enforcer83)
|
by Crimzon
Need help putting this together.
|
|
[7 replies] Last: yea i tried that but for some reason it won't work (by Crimzon)
|
need help |
|
[10 replies] Last: dear OP: You should also declare your variables inside of main and gi... (by ceruleus)
|
by rubix
offsetof; what's /really/ POD?
|
|
[3 replies] Last: Azagaros, I don't think what you suggest is possible: http://codepad.... (by rubix)
|
by wbeasley
C++ to C#
|
|
[2 replies] Last: I'm aware of that. My program is currently 600+ lines and it seemed a ... (by wbeasley)
|
by pushpat
deleting base pointer
|
|
[4 replies] Last: Line by line analysis of your code: int main() { base *bptr_1 = new... (by clanmjc)
|
by friko16
serialize table of objects
|
|
[1 reply] : Consider using formatted i/o instead of unformatted i/o. And a std::v... (by JLBorges)
|
by viliml
bug in INCREMENT?
|
|
[16 replies] Last: Ok, thanks, I got it working now. BTW, this is the whole code: #inclu... (by viliml)
|
by alexbnc
Write wide-characters in a STATIC
|
|
[2 replies] Last: Thanks! (by alexbnc)
|
Unresolved symbols and other problems (Crypto++) |
|
[4 replies] Last: What do people normally do when using Crypto++ and Windows forms? As t... (by closed account 937X92yv)
|
by Zombnom
New to fstream/argc and argv, is not displaying results ? (Grep program)
|
|
[1 reply] : because while( !in.eof() ) { getline(in, line); cout << line << en... (by PitDaAnimA)
|
by bhreddy
Reinitialization of iterator in case of vector
|
|
[4 replies] Last: Because vectors shall have one memory block for all its elements as bu... (by vlad from moscow)
|