Skip to content
Snippets Groups Projects
procedure_simplest_0_examen.cpp 465 B
Newer Older
  • Learn to ignore specific revisions
  • //============================================================================
    // 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;
    }