单项选择题

有以下程序:
#include<string.h>
#include<iostream.h>
void main( )
char * p="abcde\0fghjik\0";
cout < < strlen(p) ;
程序运行后的输出结果是

A.12
B.15
C.6
D.5