有以下程序(注:字符a的ASCII码值为97)()
#include <stdio.h>
main()
{ char *s ={“abc”};
do
{ printf(“%d”, *s%10); ++s;}
While(*s);
}
程序运行后输出结果是()
A.abc
B.789
C.7890
D.979899