Code 詩亼-邓晓华

努力不一定成功,成功一定要努力,天道酬勤!
  博客园  :: 首页  :: 新随笔  :: 订阅 订阅  :: 管理

sizeof strlen lstrlen

Posted on 2011-02-22 13:15  Code 詩亼  阅读(399)  评论(0编辑  收藏  举报
#include <iostream>
#include
<cctype> //为了使用strlen
#include <windows.h> //为了使用lstrlen

using namespace std;

int main()
{
char str[12] = "hello";
wchar_t strw[
12] = L"hello";

cout
<< strlen(str) << endl; //5
//cout << lstrlen(strw) << endl; //5
//cout << lstrlen((LPCWSTR)str) << endl; //3
cout << sizeof(str) << endl; //12

return 0;
}