fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int a;
  7. int b;
  8. int [1];
  9. int T[2];
  10. cin>>T[a];
  11. cin>>T[b];
  12.  
  13. cout<<T[a]<<":"<<T[b];
  14.  
  15. return 0;
  16. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
8:03
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:8:6: error: expected unqualified-id before ‘[’ token
  int [1];
      ^
stdout
Standard output is empty