x=5
y=x++ * x++
what will be the value of y?
x=5
y=x++ * x++
what will be the value of y?
in my view
the answer may be 25
because here you mentioned x++ and x++ this means post increment i.e first x will be initialised with value and then x will be incremented