fork(1) download
  1. #include <iostream>
  2. #include <atomic>
  3. using namespace std;
  4.  
  5. struct test {
  6. atomic<int> value {0};
  7. };
  8.  
  9. int main() {
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty