mrlolthe1st

Untitled

Sep 24th, 2023
678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. #include <numeric>
  3. #include <ranges>
  4. #include <vector>
  5. void foo() {
  6.   static int counter = 10;
  7.   std::cout << ++counter << std::endl;
  8. }
  9. int main() {
  10.   foo();
  11.   foo();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment