Guest User

Untitled

a guest
Jan 12th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;void _(int *___, int *____){int _____ = *___;*___ = *____;*____ = _____;}void __(int &___, int &____){int _____ = ___;___ = ____;____ = _____;}int main(){int _______ = 100, ______ = 200;cout<<_______<<" "<<______<<endl;_(&_______, &______);cout<<_______<<" "<<______<<endl;_______ = 100, ______ = 200;cout<<_______<<" "<<______<<endl;__(_______, ______);cout<<_______<<" "<<______<<endl;return 0;}
Add Comment
Please, Sign In to add comment