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< void * >( string );
d. cout << * string;
c. cout << static_cast< void * >( string );
Computer Science & Information Technology