#include using namespace std ; int main() { char* str1 = "string1" ; char str2[] = "string2" ; char ch = 'A' ; int x1 = 100 ; cout << str1 << endl ; cout << str2 << endl ; cout << ch << endl ; cout << &ch << endl ; cout << "Address of str1:" << (void*)str1 << endl ; cout << "Address of str2:" << (void*)str2 << endl ; cout << "Address of ch:" << (void*)&ch << endl ; cout << "Address of x1:" << &x1 << endl ; }