I have created a reference variable but I can't get the expected result. The reference variable is printing some hexadecimal numbers like >>>0x6ffe20
 #include <iostream>
 using namespace std;
 int main(){
      string food = "pizza";
      string &meal = food;
      cout << food << endl;
      cout << &meal << endl;
      cout << "The &meal and food variable are same " << endl;
    
} 
 
     
    