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
using namespace std; struct Car { string brand; int year; }; void updateYear(Car& c) { c.year++; } int main() { Car myCar = {"Toyota", 2020}; updateYear(myCar); cout << "The " << myCar.brand << " is now from year " << myCar.year << ".\n"; return 0; }
The Toyota is now from year 2021.