Computer Applications
int a=7, p=0, q=0;
p= ++a + --a;
q -= p;
The output of q will be:
- 13
- 14
- 15
- -15
Java Operators
110 Likes
Answer
-15
Answered By
21 Likes
int a=7, p=0, q=0;
p= ++a + --a;
q -= p;
The output of q will be:
110 Likes
-15
Answered By
21 Likes