填空题

以下程序运行后的输出结果是 [10]
#include<iostream.h>
void main()
char s[]=“123456”,*p;
for(p=s; p<s+2; p++)
cout<<p<<end1;

【参考答案】

123456
23456