📜  C |指针基础问题11

📅  最后修改于: 2021-05-29 12:10:06             🧑  作者: Mango

#include 
void f(int *p, int *q) 
{ 
  p = q; 
  *p = 2; 
} 
int i = 0, j = 1; 
int main() 
{ 
  f(&i, &j); 
  printf("%d %d \n", i, j); 
  getchar(); 
  return 0; 
}

(A) 2 2
(B) 2 1
(C) 0 1
(D) 0 2答案: (D)
说明:请参见以下f()并带有注释以获取解释。

/* p points to i and q points to j */
void f(int *p, int *q) 
{ 
  p = q;    /* p also points to j now */
 *p = 2;   /* Value of j is changed to 2 now */
}
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。