fork(3) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. if(sizeof(int) > -1) {
  7. cout << "True" << endl;
  8. }
  9. else {
  10. cout << "False" << endl;
  11. }
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
False