A pointer value may be assigned to another pointer of the same type. For example, in the program below: int i=1, j, *ip; ip=&i; j=*ip; * ...
確定! 回上一頁