这个例子的输出是......
HC:\Projects\cppexample.exeello 世界。
为什么当前可执行文件的路径被推送到字符串中?
#ifndef UNICODE
#define UNICODE
#endif
#include <Windows.h>
int main()
{
TCHAR string[255];
string[0]=TEXT('H');
wcscat(string,TEXT("ello world"));
MessageBox(0,string,0,0);
system("Pause");
return 0;
}