Address of Operator

cout<<&ch<<endl; where the data type is (char *)
in order to print the address we use cout<<(void *)&ch<<endl;

It means in cout<<&x<<endl; where data type is also (void *) ???
or (int *)??