Description
In C Programming we have two types of increment operator i.e. pre-increment and post-increment operator. Given x=10, use post-increment to assign 10 and 11 to variables a and b respectively.
Output
Value of a : 10
Value of b : 11
Value of a : 10
Value of b : 11