Forum: C++ Apr 5th, 2005 |
| Replies: 47 Views: 66,981 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,709 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,813 |
Forum: C Aug 1st, 2004 |
| Replies: 2 Views: 4,771 check this link :D
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingPrintingPrinterSettingsPropertiesTopic.asp |
Forum: C Aug 1st, 2004 |
| Replies: 7 Views: 5,155 With more familiarity to Unix based systems I realised an important fundamental of fork()ing. The way Unix creates a new process. And a simple "man fork" helped alot. After getting a little familiar... |
Forum: C Jul 14th, 2004 |
| Replies: 5 Views: 5,497 _strrev, _wcsrev, _mbsrev
Reverse characters of a string.
char *_strrev( char *string );
wchar_t *_wcsrev( wchar_t *string );
unsigned char *_mbsrev( unsigned char *string );
Routine... |
Forum: C++ Jul 14th, 2004 |
| Replies: 7 Views: 17,867 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: 67,338 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,305 I Donno .. Is this realted to C++ ??? :?: |
Forum: C++ May 2nd, 2004 |
| Replies: 12 Views: 6,019 thnx guys but is there any anther way to do that without <cstdlib>? |