Kizspy Question: 43
(Choose 1 answer)
FOUVERI. JIM Com
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;
}
A. 11,11
B. 1,1
C. 0,0
D. 0,1