nint Increment(int n); // function
declaration
nint Increment(int n){ // function
definition
n return (n+1);
n }
nint main() {
n int x = 25;
n x = Increment(x);
n int y = Increment(x);
n cout << x << " --
" << y << " -- " << Increment(y)
n << Increment(6) << endl;
n return 0;
n}
n// this will print 26 -- 27 -- 28 -- 7
n
n
n