#include using namespace std; void increment (int& x) { // increment the variable x x = x+1; } int main () { // insert code here... int N = 10; increment (N); cout << N << endl; return 0; }