Thread: i++ and ++i
View Single Post
Join Date: Aug 2004
Posts: 3
Reputation: TITAN is an unknown quantity at this point 
Solved Threads: 0
TITAN TITAN is offline Offline
Newbie Poster

Re: i++ and ++i

 
0
  #4
Aug 14th, 2004
It`s simple
  1. int i;
  2. i++; //Postfix
  3. ++i; //Prefix
Reply With Quote