What will the following statement output?
int num1 = 3;
cout << &num1;
a) The value stored in the variable called num1.
b) The memory address of the variable called num1.
c) The number 1.
d) The string "&num1".
e) None of these