Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <numeric>
- #include <ranges>
- #include <vector>
- void foo() {
- static int counter = 10;
- std::cout << ++counter << std::endl;
- }
- int main() {
- foo();
- foo();
- }
Advertisement
Add Comment
Please, Sign In to add comment