问答题

以下程序段的执行结果是(     )。 
void main( ){
    char a[]="abcdefg",*p;
    p = a;
    *(p+3)+=2;
    printf("ch=%s",p);
}

答案: ch=abcfefg
微信扫码免费搜题