标签:code include def height 方式 字符类型 http bsp names
#include <iostream> using namespace std; int main() { wchar_t wStr[]=L"ABCDEFG"; char Str[] = "ABCDEFG"; wcout<<wStr<<endl; wcout<<Str<<endl; cout<<"size:"<<sizeof(wStr)<<endl; cout<<"wSize:"<<sizeof(wStr)<<endl; return 0; }
标签:code include def height 方式 字符类型 http bsp names
原文地址:https://www.cnblogs.com/TD-Lemon1996/p/11056513.html