有以下程序
#include <string.h>
Void f(char p[][10],int n) /* 字符串从小到大排序 */
{char t[10]; int i,j;
For(i=0;i<n-1;i++)
For(j=i+1;j<n;j++)
If(strcmp(p[i],p[j])>0) { strcpy(t,p[i]); strcpy(p[i],p[j]); strcpy(p[j],t);}
}
Main()
{ char p[5][10]={"abc","aabdfg","abbd","dcdbe","cd"};
F(p,5);
Printf("%d\n",strlen(p[0]));
}
程序运行后的输出结果是______。
A.2 B.4 C.6 D.3正确答案C