What’s wrong with this code?
UINT a;
.
.
.
DoSomething(HIWORD(a));
void DoSomething(int x)
{
 if (x < 0)
 {
  //do something
 }
Â
}
I recently ran into this in some code I was working on.
What’s wrong with this code?
UINT a;
.
.
.
DoSomething(HIWORD(a));
void DoSomething(int x)
{
 if (x < 0)
 {
  //do something
 }
Â
}
I recently ran into this in some code I was working on.
Pingback: Philosophical Geek » What’s Wrong with this code? - 2 - Answer