Forum: C++ Apr 5th, 2005 |
| Replies: 47 Views: 65,471 Introduction
These tips are based mainly on ideas from the book Efficient C++ by Dov Bulka and David Mayhew. For a more thorough treatment of performance programming with C++, I highly recommend... |
Forum: C++ Nov 20th, 2004 |
| Replies: 0 Views: 3,592 Having bugs in your code may be unavoidable, but crashing *is* avoidable. Barring cosmic rays playing yahtzee with your memory there is no reason why your program should ever crash. Crashing is... |
Forum: C++ Aug 25th, 2004 |
| Replies: 7 Views: 5,678 |
Forum: C++ Jul 14th, 2004 |
| Replies: 7 Views: 17,609 C++ : One-Hour Overview
(1) User-Defined ADT (Abstract Data Types)
e.g.: "enum" creates a user-defined type.
enum Months { JAN = 1, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC };... |
Forum: C++ Jul 13th, 2004 |
| Replies: 7 Views: 66,444 Overview
Serial communications in Microsoft® Win32® is significantly different from serial communications in 16-bit Microsoft Windows®. Those familiar with 16-bit serial communications functions... |
Forum: C++ May 28th, 2004 |
| Replies: 4 Views: 3,204 I Donno .. Is this realted to C++ ??? :?: |
Forum: C++ May 2nd, 2004 |
| Replies: 12 Views: 5,962 thnx guys but is there any anther way to do that without <cstdlib>? |