Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
#include
using namespace std; int main() { string food = "Pizza"; // food variable string &meal = food; // reference to food meal = "Burger"; // change the reference cout << food << "\n"; // Outputs Burger cout << meal << "\n"; // Outputs Burger return 0; }
Burger
Burger