(Choose 1 answer)
What is the output when the sample code below is executed?void show(int *b) { printf("%d ",*b);
}
int main() {
int i;int a[]={23, 34, 45, 56);for(i=0; i<3; i++) show(&a[i]+1);return(0);
}
A. 23 34 45
B. 23 34 45 56
C. 34 45 56
D. 45 56 23
E. 23 45 56
Exit 15