(Choose 1 answer)
#include<stdio.h>
What is the output when the sample code below is executed?
void main(){
int i, j = 25;
int *pi, *pj = &j;
*pj = j + 5;i = *pj + 5;
pi = pj;
*pi = i + j;
printf("%d %d", *pi, *pj);
}
A. 65 65
B. 30 35
C. 60 65
D. 60 60
Ε. 25 30
Q: 39