#ifndef UNICODE
#define UNICODE
#endif
#include <stdio.h>
#include <Windows.h>
int main(void)
{
TCHAR greeting[50] = L"Hello world";
TCHAR exclamation=L'!';
//????
wprintf("%s",greeting);
return 0;
}
应该怎么做,这样输出就会带有感叹号?指令
greeting[wcslen(greeting)]=exclamation;
用汉字完成数组的剩余部分。
PS。我只需要输出“greeting”变量,所以除了 of 之外的代码//????
是不可更改的。