#include void birthday(int &age); int main() { int age=0; cout << "How old are you? "; cin >> age; birthday(age); cout << "You are " << age << " years old" << endl; } void birthday(int &x) { x++; }