Ah hello.
Quick question this one: why is the result of the following statements different:
// When viewed in the memory window of VS, sBuffer is all '...', i.e. totally empty. When hovered over,
// the tooltip states sBuffer=""
WCHAR sBuffer[10000] = _T("");
// When viewed in the memory window of VS, a is all 'ÌÌÌÌÌÌ', i.e. rubbish. When hovered over, the tooltip
// states s="" (???)
WCHAR s[10000];
s[0]= _T('\0');
What is the first case doing that is so special?
TIA
Start Free Trial