Computer Science, asked by niranjansaha52, 4 months ago

(c) int a = 20, b = 40, c = 50, x;
x=c* a-- + (a % ++b) - (b* --c) % b;
System.out.println (x);​

Answers

Answered by ashu0itkm
1

Answer:

x=50*20+(19%41) -(41*49) %41

x=1000+19-2009%41

x=1000+19-0

x=1019

Similar questions