User profile: dhayden

User info
User name:dhayden
Name:Dave Hayden
Location:Central New Jersey, USA
Bio:I've been programming since the mid-1970s and doing it professionally since 1985.
Statistical data
Occupation:Programmer
Skills:C
BASIC
C++
Pascal
ADA
Delphi
Assembly
LISP
History
Joined:
Number of posts:5794
Latest posts:

Collision detection using bit manipulation
Another way is to just determine the new position and then check both X and Y. I put the mapWidth an...

Wait for stdout completed (C)
To be clear, you want the puts() to finish output. [quote]fflush(stdout) doesn't work as that return...

3D C++ array
Have you considered vector<vector<vector<double> > > ? The code will be easier, although it will ha...

Code objects alignment, memory and execution by CPU in C++
Donald Knuth said "premature optimization is the root of all evil." What he meant is that it's a ba...

Code objects alignment, memory and execution by CPU in C++
[quote]A side but related question: Can padding occur in non-class/struct objects? If so how?[/quote...