单项选择题

以下程序段的输出为 ( )
static char a[]="language",b[]="progratne";
char *ptr1,*ptr2;
int k;
ptr1=a;ptr2=b;
for(k=0;k<7;k++)
if(*(ptr1+k)==*(ptr2+k))
printf("%c",*(ptr1+k));

A.gae
B.ga
C.language
D.有语法错误