Small tests i share because why not
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
292 B

6 лет назад
  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. }