Answer:
The correct option for the given question is option(A) i.e Increments the value currently stored in the variable x and stores that new value back in the variable x.
Step-by-step explanation:
x++ is an increment operator Their are two types of increment operator
1.Post increment
2.Pre increment.
Post increment operator assign the value first to variable then increment the value by 1.
for example
int a=7,t;
t=a++; //post increment
Pre increment operator first increment the value by 1 then store into variable.
int a=7,t;
t=++a; // Pre increment.
So the correct answer is option(a)