If I assign the address of a char variable to another variable

If I assign the address of a char variable to another variable, what will get stored in that variable?

Eg.
char ch=‘A’;
int address= &ch;
cout<<address;

//What will be the output?

hello @Ayush280301
you need to declare address as char pointer otherwhise compiler will give error .because of invalid conversion.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.