fork download
  1. #include <iostream>
  2.  
  3. template <typename T, size_t N>
  4. void magic(const T (&t)[N]) {
  5. std::cout << N << '\n';
  6. }
  7.  
  8. int main() {
  9. double tab[31];
  10.  
  11. magic(tab);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout
31