Small tests i share because why not
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
292 B

6 yıl önce
  1. #include <thread>
  2. #include <iostream>
  3. volatile int counter=0;
  4. void incr(const int count=200000)
  5. {
  6. for(int i=0;i<count;i++)
  7. counter++;
  8. }
  9. int main()
  10. {
  11. std::thread m(incr,200000);
  12. incr(200000);
  13. std::cout << "Expects 400000, get "<< counter <<std::endl;
  14. return 0;
  15. }