This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

variable name confusion

void tst()
{
  { char  x; _x = 0; } // ... error C202: '_x': undefined identifier
  { char _x;  x = 0; } // No errors! Are "_x" and "x" the same here?
}

0