fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int x = 5;
  8. int y = 3;
  9. int [] j = new int[5];
  10. if(x <= y)
  11. cout<<"HELLO X <= Y" <<endl;
  12. return 0;
  13. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:9:6: error: expected unqualified-id before ‘[’ token
stdout
Standard output is empty