summaryrefslogtreecommitdiff
path: root/tests/exec/prepost1.cpp
blob: c536018bec839732a931e74faed6de80120af4c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>

int main() {
  int x = 41;
  std::cout << "x = " << x << "\n";
  x++;
  std::cout << "x = " << x << "\n";
  x--;
  std::cout << "x = " << x << "\n";
  ++x;
  std::cout << "x = " << x << "\n";
  --x;
  std::cout << "x = " << x << "\n";
}