What will the following code output?
int number = 22;
int *var = &number;
cout << *var << endl;
a) The address of the number variable
b) An asterisk followed by 22
c) 22
d) An asterisk followed by the address of the number variable