Assume that strikeCounter has already been declared to be a "pointer to int". Assume further that strikeCounter has been initialized -- its value is the address of some int variable. Write a statement that assigns the value 27 to the variable that strikeCounter is pointing to.
.
.
Click on the title for the solution
.
.
*strikeCounter=27;
.
Click on the title for the solution
.
.
This is the answer:
:
*strikeCounter=27;
Comments
Post a Comment