Programming Tutorials

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



Comment Added by : spiriad

Comment Added at : 2011-01-08 14:27:50

Comment on Tutorial : Demonstration of Prefix and Postfix operators in C++ By Emiley J
Amit, at your first question, what the preprocessor will do with that define is to put in the code (++i) * (++i) => it will have to increment x twice => 5*5 = 25 =>x=5

View Tutorial