👤

a = 2 b = 4 c = 8 what is x = a ++;​

Sagot :

Answer:

++x increments the value of x and then returns x. x++ returns the value of x and then increments.