Lparts #include< stdio.h >main(){int a=1,b;b=a++*2;printf("%d %d",a,b);}Output:2 2How it works?we use post increment so increment operation of 'a' will be done after multiplication . so b=2. then a value will be incremented so a=2 Share this Share on FacebookTweet on TwitterPlus on Google+