fork download
  1. #include <array>
  2.  
  3. int main() {
  4. const int a[]{1,2,3,4,5};
  5. const std::array<int, 5> b{1,2,3,4,5};
  6. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty