求解释这编译结果
#include <iostream>#include <string>
using namespace std;
int main()
{
char abc[]={'1','2','3'};
int a=sizeof(abc);
int b=strlen(abc);
cout<<a<<" "<<b<<endl;
return 0;
}
2012-07-06 14:19
2012-07-06 14:28
2012-07-06 16:23