请在 下方输入 要搜索的题目:

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
推荐参考答案 ( 由 题搜搜 官方老师解答 )
答案:*p = 60 ; ■i = *p + 20;
登录 - 搜搜题库网
立即注册
注册 - 搜搜题库网
立即登录