#include <iostream> 
using namespace std;

void happyBirthday(int& age){
  age += 1;
}

int main()
{
  int my_age = 15;
  happyBirthday(my_age);
  cout << "Happy birthday! You are now " << my_age << endl;
  return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: