Kizspy | Question: 41
(Choose 1 answer)
What will be the output of the following program?
void func(int *p){
int j=11;*p = j;
}
int main() {
int i = 1;
int *p = &i;
func(p);
printf("%d,%d", i, *p);
getchar();
return 0;
FUOVERFL
}
A. 11,11
B. 1,1
C. 0,0
D. 0,1