填空题 下面程序的运行结果是 【13】
#include<iostream.h>
void main()

char s[]="9876",*p;
for(p=s;p<s+2;p++)
cout<<p;


  • 1、
【正确答案】 1、9876876    
【答案解析】