主题:又一道题
#include <stdio.h>
#include <string.h>
main()
{
printf("%d\n",strlen("a\n\"\x41"));
}
运行结果为:4
因为strlen(字符串),所以"a\n\"到这里便结束了(后面的\x41"就不管了)。因此运行结果是:4.我是这样理解是,不知道对不对?
#include <string.h>
main()
{
printf("%d\n",strlen("a\n\"\x41"));
}
运行结果为:4
因为strlen(字符串),所以"a\n\"到这里便结束了(后面的\x41"就不管了)。因此运行结果是:4.我是这样理解是,不知道对不对?