Sorry,
Here is another method...but it will overfloat
a = (a << 4) & b;
b = a;
b = b >> 4;
a = a << 4;
a = a >> 4;
or something like that...
but the best one is the XOR method...
| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | VB Forums | Developer.com |
|
Results 1 to 1 of 1
Thread: Re: You misunderstood it
|
Click Here to Expand Forum to Full Width |