Guest User

Untitled

a guest
Jun 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. int j=0;
  2.  
  3. cout<<j++<<" "<<j++<<" "<<j++<<"n";
  4.  
  5. 2 1 0
  6.  
  7. 0 1 2
  8.  
  9. int x;
  10. x = 0;
  11. x = x++;
  12.  
  13. ... operator<<( operator<<( operator<<( operator<<(cout,j++), " " ), j++ ), "n" ); ...
  14.  
  15. ...g(f(j++)," ").f(j++)...
  16.  
  17. #include <iostream>
  18.  
  19. int main (int argc, char **argv) {
  20. int j = 0;
  21. std::cout << j++ << " " << j++ << " " << j++;
  22. return 0;
  23. }
Add Comment
Please, Sign In to add comment