fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int array[] = {5, 7, 10, 9};
  6.  
  7. 6. int **p = (array + 1);
  8.  
  9. 7. cout<< **array + 10;
  10.  
  11. 8. system("pause");
  12.  
  13.  
  14. return 0;
  15. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:7:4: error: expected ‘;’ before ‘int’
 6. int **p = (array + 1);
    ^~~
prog.cpp:9:4: error: expected ‘;’ before ‘cout’
 7. cout<< **array + 10;
    ^~~~
prog.cpp:11:4: error: expected ‘;’ before ‘system’
 8. system("pause");
    ^~~~~~
stdout
Standard output is empty