fork(1) download
  1. #include <iostream>
  2.  
  3. int main() {
  4. const bool z = true;
  5. const int x = 5, y = 3;
  6. int arr[z ? x : y];
  7. return 0;
  8. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty