SpiralRock

Mayank

Jun 17th, 2009
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. void Testin()
  2. {int i=10
  3. cout<<i++<<endl;
  4. cout<<++i<<endl;
  5. cout<<i++<<endl;
  6. }
  7.  
  8. 10
  9. 12
  10. 12
Add Comment
Please, Sign In to add comment