Skip to content

Instantly share code, notes, and snippets.

@zhenghao1
Created February 28, 2014 14:55
Show Gist options
  • Save zhenghao1/9272518 to your computer and use it in GitHub Desktop.
Save zhenghao1/9272518 to your computer and use it in GitHub Desktop.
User defined functions cannot return local variables
void getID(DWORD mask, TCHAR* item)
{
_stprintf(item, "Hello World!");
}
TCHAR* getID(DWORD mask)
{
TCHAR item[20];
_stprintf(item, "Hello World!");
return item;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment