[solved] – Question 73815
If you declare an integer pointer as int *pt; and you declare an integer variable as int num; , then which of the following is legal?
A.
num = &pt;
B.
pt = #
C.
*num = *pt;
D.
&num = pt;
Expert Answer
OR
If you declare an integer pointer as int *pt; and you declare an integer variable as int num; , then which of the following is legal?
A.
num = &pt;
B.
pt = #
C.
*num = *pt;
D.
&num = pt;
OR