执行以下程序段后,输出结果是______。

char p=”abcdefgh”, *q;q=p+3;printf(“%d尀n”,*p-*q);A)3 B)1 C)-1 D)c
2024-12-25 09:33:31
推荐回答(1个)
回答1:

char *p=”abcdefgh”, *q;

q=p+3;

printf(“%d\n”,*p-*q);

应该是-3