Computer Science, asked by guest7878, 5 hours ago

If b = 10 initially, give value of a:
a+ = 15* --b+b++;
Y

Answers

Answered by sarthakshrestha
0

Answer:

144

Explanation:

b = 10

a += 15*--b + b++

a += 15* 9 + 9 ( -- prefix changes value before a +=‎‎‎‎‎‎‎‎‎‎‎ 135+9 use and ++postfix uses the value then a += 144 changes it )

a = a + 144

a = 0 + 144 ( default value of any integer data is

a = 144 0 or 0.0 )

Similar questions