Description
In C Programming we have two types of decrement operator i.e. pre-decrement and post-decrement operator. Given y=10, use post-decrement to assign 10 and 9 to variables c and d respectively.
Output
Value of c : 10
Value of d : 9
Value of c : 10
Value of d : 9