Guest User

Untitled

a guest
Dec 21st, 2022
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | Source Code | 0 0
  1. template <int M = 0>
  2. struct A {
  3.     int money = M;
  4.     int func(int x, int y = M) {
  5.         return x + y;
  6.     }
  7. };
Advertisement
Add Comment
Please, Sign In to add comment