输出5,21

int main()
{
	char a[] = "abcde";
	char b[] = { 'a', 'b', 'c', 'd', 'e' };
	cout << strlen(a) << endl;
	cout << strlen(b) << endl;
	system("PAUSE");
	return 0;


}

  why??

posted on 2021-12-10 19:48  lydstory  阅读(13)  评论(0)    收藏  举报

导航