+ 2
++i denotes prefix increment it first increases the value and then do the operation EG- i=4 cout<<++i; OUTPUT---. 5 i++ denotes postfix increment it first do the operation and then increases value. cout<<i++; OUTPUT---. 4
21st Sep 2016, 2:44 PM
Descifrador
Descifrador - avatar