Computer Science, asked by arjuarj729, 8 months ago

a=100;b=a--;
a=100;c=++a;
x=50;y=x++;
x=50;y=--x;
y=15;x=y--;
d=14;f=++d;
a=25;b=--a;
what's the answer
increment and decrement operator​

Answers

Answered by harishsharma20444
1

Answer:

100

101

50

49

15

15

25

Explanation:

by using post and pre increment nd decrement

100

101

50

49

15

15

25

Similar questions