执行以下代码后,输出结果是:( )。
char s[10] = "abcde"; int a = sizeof(s) / sizeof(s[0]); int b = strlen(s); cout << a - b;
4
5
6
10