Programming Tutorials

Comment on Tutorial - Demonstration of Prefix and Postfix operators in C++ By Emiley J



Comment Added by : Amit Goyal

Comment Added at : 2009-09-25 05:48:45

Comment on Tutorial : Demonstration of Prefix and Postfix operators in C++ By Emiley J
what will be the output of 'X' in following code and how ?

x=(i++ + ++i + i++ + i++ + ++i);


View Tutorial