原创
字符长度
2008-11-8 14:56
2687
5
5
分类:
软件与OS
#include <iostream>
#include <string>
using namespace std;
int main()
{
char* a = "123456";
char b[] = "123456";
cout << sizeof(a) << endl
<< sizeof(b) << endl;
cout <<strlen(a) << endl
<<strlen(b) << endl;
return 0;
}
输出返回为:
4
7
6
6
文章评论(0条评论)
登录后参与讨论