试题详情

有以下程序(注:字符a的ASCII码值为97) #include main() {char *s={“abc”}; do {printf(“%d”,*s%10);++s;} while(*s); } 程序运行后的输出结果是()。

Aabc

B789

C7890

D979899