(Choose 1 answer)
void show(int *b) {
What is the output when the sample code below is executed?
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
Β. 23 34 45 56
C. 34 45 56
D. 45 56 23
Ε. 23 45 56