A-A+

有以下程序:void main(){char s[]="159" *p;p=s;printf("%c" *p++);printf("%c" *p++);}程序运行

2020-10-12 15:30:59 IT认证 阅读

问题详情

有以下程序:void main(){char s[]="159",*p;p=s;printf("%c",*p++);printf("%c",*p++);}程序运行后的输出结果是()。A.15 B.16 C.12 D.59

参考答案

考点: