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