Assume that an int variable diff has already been declared. Assume further a variable diffPointer of type "pointer to int" has also already been declared. Write a statement that assigns the address of diff to diffPointer.
.
.
Click on the title for the solution
.
.
diffPointer=&diff;
.
Click on the title for the solution
.
.
This is the answer:
:
diffPointer=&diff;
Comments
Post a Comment