| c++ Programming Glossary: zeroingGCC problem with raw double type comparisons http://stackoverflow.com/questions/2497825/gcc-problem-with-raw-double-type-comparisons  0x300 add to the fpu control word after zeroing precision bits to turn on extended precision cite INTEL . static.. 0x200 add to the fpu control word after zeroing precision bits to turn off extended precision cite INTEL . void.. 
 Initializing an object to all zeroes http://stackoverflow.com/questions/2837854/initializing-an-object-to-all-zeroes  demonstrates a real life practical difference between a zeroing memset and a normal 0 initializer.  share improve this answer.. 
 Difference in initializing and zeroing an array in c/c++? http://stackoverflow.com/questions/453432/difference-in-initializing-and-zeroing-an-array-in-c-c  in initializing and zeroing an array in c c  In c or maybe c what's the difference between.. 
 Strange assembly from array 0-initialization http://stackoverflow.com/questions/531477/strange-assembly-from-array-0-initialization   Inspired by the question Difference in initalizing and zeroing an array in c c I decided to actually examine the assembly of.. 
 Is there an implicit default constructor in C++? http://stackoverflow.com/questions/563221/is-there-an-implicit-default-constructor-in-c  . I've experimented with this and I'm not seeing any zeroing out behaviour. I also can't find anything that mentions this.. 
 Weird XOR swap behavior while zeroing out data http://stackoverflow.com/questions/5785108/weird-xor-swap-behavior-while-zeroing-out-data  XOR swap behavior while zeroing out data  Thanks Doug. Here's the fix void swap int a int b.. 
 zeroing derived struct using memset http://stackoverflow.com/questions/7082691/zeroing-derived-struct-using-memset  derived struct using memset  I want to zero out all members.. 
 Sequence Point - Xor Swap on Array get wrong result http://stackoverflow.com/questions/9958514/sequence-point-xor-swap-on-array-get-wrong-result  some other issue on xor swap Weird XOR swap behavior while zeroing out data So I should avoid using xor swap instead swap with.. 
 |