++x % x++ (x=6)
pls answer
Answers
Answered by
0
Explanation:
Acceleration, rate at which velocity changes with time, in terms of both speed and direction. A point or an object moving in a straight line is accelerated if it speeds up or slows down. Motion on a circle is accelerated even if the speed is constant, because the direction is continually changing.
Answered by
0
Answer:
1
Explanation:
++x is called pre-increment and x++ is known as post-increment.
In ++x, we first increase value of x by 1 then use it for calculation while in x++, we simply use value of x for calculation then increment it.
So ++x % x++ = 7%6=1
Similar questions