int b = 10; // Make a variable and set the value to 10
int* c = &b; // Making a pointer c and setting it to the address of b.
int a = (*c) * b; // a gets the value at c times b
This works for me. We'll need to see how the variables are defined and initialized if you'd like anything further.