EX 2.7. Write four different program statements that increment the value of an integer variable total.
What will be an ideal response?
```
total = total + 1;
total += 1;
total++;
++total;
```
Computer Science & Information Technology