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:5782
Latest posts:

Returning wrong value
[quote]Int*P points to first element in array A which is an integer of 4 bytes.[/quote] The size of ...

code unexplained behavior
Line 61: (0U > wSubaddress) is always false. An unsigned is never less than 0. Line 123: Each time ...

Detached thread error in helgrind
If line 34 executes before line 12, then [code]finished[/code] will never be set.

Neural Network does not work the right way
Add some basic debugging info or run it through a debugger. For example, print the name of the file ...

Segmentation Fault by Using Vectors
Line 29 is wrong. It should be [code]while (holder->next [u]!=[/u] nullptr)[/code] The whole hashIn...