Which of the following prints the address of character string string given the following declaration?
char* string{"test"};
a. cout << string;
b. cout << *&string;
c. cout << static_cast
d. cout << *string;
c. cout << static_cast
Computer Science & Information Technology