fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. return 0;
  7. }
  8.  
  9. struct TestStruct {
  10. int id;
  11. TestStruct() : id(42)
  12. {
  13. }
  14. };
  15.  
  16.  
Success #stdin #stdout 0s 4544KB
stdin
Standard input is empty
stdout
Standard output is empty