fork download
  1. int main() {
  2. int foo0[]{1, 2, 3};
  3. int foo1[3]{1, 2, 3};
  4. int foo2[5]{1, 2, 3};
  5. int foo3[] = {1, 2, 3};
  6. int foo4[3] = {1, 2, 3};
  7. int foo5[5] = {1, 2, 3};
  8. }
Success #stdin #stdout 0s 2880KB
stdin
Standard input is empty
stdout
Standard output is empty