fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. double[] MeineFunktion();
  5.  
  6. int main() {
  7. // your code goes here
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:4:7: warning: structured bindings only available with -std=c++17 or -std=gnu++17
 double[] MeineFunktion();
       ^
prog.cpp:4:7: error: structured binding declaration cannot have type ‘double’
 double[] MeineFunktion();
       ^~
prog.cpp:4:7: note: type must be cv-qualified ‘auto’ or reference to cv-qualified ‘auto’
prog.cpp:4:7: error: empty structured binding declaration
prog.cpp:4:10: error: expected initializer before ‘MeineFunktion’
 double[] MeineFunktion();
          ^~~~~~~~~~~~~
stdout
Standard output is empty