Given the following: int *p ; int i, j ; i = 40 ; j = i ; p = &i ;Which of the following statements will change the value of i to 60?
A、p=60;;
B、&i=60;;
C、*i=60;;
D、*p=60;;
E、p=i+20;;
F、i=p+20;;G:i=*(p+20);;H:i=*p+20;
发布时间:2025-10-28 06:15:43