Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream>
- int &t(void) {
- static int t=100;
- return t;
- }
- int main(void) {
- for( ; std::cout<<t()--<<" ", t() ; );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement