fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5.  
  6. template<int N>
  7. void func(char const (&c)[N])
  8. {
  9. // c[1] = '@'; you cannot assign to variable that is const
  10. std::cout << c << "\n"
  11. << sizeof(c) << "\n";
  12. }
  13.  
  14.  
  15. int main()
  16. {
  17. func("pinta");
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
pinta
6