试题详情

有以下程序 #include "stdio.h" f(char *s) { char *p=s; while(*p!=‘\0‘) p++; return(p-s); } void main() { printf("%d\n",f("ABCDEF")); } 执行后的输出结果是( )。

A3

B6

C8

D0