fork(1) download
  1. #include <array>
  2.  
  3. void F( std::array<int,3> x = {{1,2,3}} )
  4. {
  5. //...
  6. }
  7.  
  8. int main()
  9. {
  10. F();
  11. }
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty