solve this fast tommorow ihave to submit or marks are going in poop
Attachments:
Answers
Answered by
3
Answer:-
a=1, b=2 and c=3
a>b && c*3>=5+a
=1>2 && 9>=6
= false && true
=false
++a<b++ || --b<c--
= 2<3 || 2<3
=true || true
=true
!(a<b++ && c+b>=a++*2)
=!(1<2 && 3+3>=2)
=!(true && true)
=!true
=false
c=++a - ++b + c
=1 - 3 + 3
= 1
c = ++a - ++b*c
=2 -3*3
=2-9
= -7
a+= ++a - b++
=a + ++a - b++
=1+2-2
=1
Similar questions