Forum: C Dec 7th, 2008 |
| Replies: 7 Views: 916 There are books on the subject with examples too. I would also use the word SECURITY when looking for this subject. It's educational to see examples, but that's about it for me, since I'm not in... |
Forum: C++ Dec 2nd, 2007 |
| Replies: 19 Views: 2,020 Since you say you are not interested in how the program works, I can only assume that you
really aren't interested in the subject of computers and IT very much. Because of that,
you may not last... |
Forum: C++ Dec 2nd, 2007 |
| Replies: 11 Views: 1,181 Those are not memory address locations ,but I/O Port addresses
used for external hardware control, which is what you are
looking for. If you are using a regular old intel type X86 or Pentium... |
Forum: C++ Dec 2nd, 2007 |
| Replies: 19 Views: 2,020 I'm not trying to sound like a prick here, but shouldn't
if (lateFee = N)
be
if (lateFee == N)
? |