What will be the values of x aand y after the following code is executed?
```
int x = 12, y = 5;
x += y--;
```
a. x = 12, y = 5
b. x = 16, y = 4
c. x = 17, y = 5
d. x = 17, y = 4
d. x = 17, y = 4
Computer Science & Information Technology
You might also like to view...
The newest NFAT systems are a combination of
A) IDS and forensic software B) Agents and application software C) DHCP servers and IDSs D) IDS and application software
Computer Science & Information Technology
When data values in a program are stored in memory, they are lost when the program ends.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology