Positive SSL
1 13. 下列C/C++程式片段,輸出結果何者正確?
A 1
B 2
C 3
D 4

int x=3
int a[]={1,2,3,4};
int *z;
z=a;
z=z+x;
cout<<*z<<"\n";