When I use i++++ give compile error :
for (int i=1;i<=10;i++++) {} //a.cpp:63: error: lvalue required as increment operand
or
int i = 0;
i++++; // a.cpp:65: error: lvalue required as increment operand
but when I use ++++i is working. Anybody explain me why ++++i regular but i++++ not regular?
Thanks.
 
     
     
     
     
     
    