#include<afxwin.h>#include<iostream>
using namespace std;void main()
{
TCHAR ch[]=TEXT("aaa");
cout<<ch<<endl
<<sizeof ch<<endl;
}
怎么不是输出字符串,而是16进制啊?