Skip to content
Snippets Groups Projects
procedure-simplest_2.cpp 465 B
Newer Older
//============================================================================
// Name        : testCpp.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
using namespace std;


void  increment(int n) {
    n=n+1;
}

int main() {
    int a = 5;
    increment(a);
    cout << a << endl;
}