fork download
  1. #include <array>
  2. #include <iostream>
  3.  
  4. // .h
  5. class MainClass {
  6. public:
  7. static constexpr const unsigned char predefinedArray1[] = { 'x', 'y', 'z' };
  8. static constexpr const unsigned char predefinedArray2[] = { 'a', 'b', 'c', 'd' };
  9. };
  10.  
  11. // .cpp
  12. // nothing
  13.  
  14.  
  15. int main() {
  16. return 0;
  17. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty