Stephens5140 Stephens5140 25-12-2023 Computers and Technology contestada 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 22b. 22 d. An asterisk followed by the address ofthe number variable