ghaile9452 ghaile9452 18-01-2024 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 b) An asterisk followed by 22 c) 22 d) An asterisk followed by the address of the number variable