Computer Science, asked by army0775, 2 months ago

int a=7, p=0, q=0;
p= ++a + --a; q-= p;

Output of a will be:

Answers

Answered by priya7668
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