A-A+

Q4 : int iVal1 = 0 iVal2 = 0; int * ipVal; ipVal = &iVal1; What is the Value of ip

2020-09-18 20:55:33 资格考试 阅读

问题详情

Q4 :

int iVal1 = 0, iVal2 = 0;

int * ipVal;

ipVal = &iVal1; What is the Value of ipVal = *ipVal =

ipVal = (int*)iVal1; What is the Value of ipVal = *ipVal =

iVal2 = (int)&iVal1; What is the Value of ipVal = *ipVal =

请帮忙给出正确答案和分析,谢谢!

参考答案

题库:
考点: