Advertisement
Guest User

Untitled

a guest
Mar 12th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. template<size_t N>
  2. void display(int const (&arr)[N])
  3. {
  4.     for (auto x : arr)
  5.         std::cout << x << '\n';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement