int a=7, p=0, q=0;
p= ++a + --a; q-= p;
Output of a will be:
Answers
Answered by
4
Answer:
Output will be:
a= 7;
p=15;
q= -15;
Explanation:
p= 8+7;
p=15;
q= q-15;
q=-15;
So, output of a will be 7...
HOPE IT WILL HELP YOU!
Similar questions