AP Computer Science A Question of the Day
Daily challenge for AP Computer Science A. Test yourself and track progress.
USING POINTERS
Study the following pseudocode.
**int * var1;**
**int foo = 63;**
**var1 = &foo;**
**var2 = *var1;**
What are the values of var1 and var2?
Select an answer and click Check.