C Program for understanding the concept of pre-increment and post-increment
PROGRAM:
Output:( using GNU GCC Compiler with Code Blocks IDE )
After post-increment: j value: 10 , i value:11
After pre-increment: j value: 12, i value:12