Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include < iostream>
  2. using namespace std;
  3. main()
  4. {
  5. int m=66 , n;
  6. n=++m;
  7. cout <<"m="<<m<<",n="<<n<<endl;
  8. n=m++;
  9. cout<<"m="<<m<<",n="<<n<<endl;
  10. cout<<"m="<<m++<<endl;
  11. cout<<"m="<<m<<endl;
  12. cout<<"m="<<++m<<endl;
  13. return0:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement