fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int tab[10];
  6. for (int i = 0; i < 10; i++) tab[i] = i;
  7. cout << (1, 2, 3) << endl;
  8. cout << tab[1, 2] << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
3
2