fork(2) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int a = -7;
  6. unsigned int b = 30;
  7.  
  8. std::cout << a % b << '\n';
  9. return 0;
  10. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
9