fork(1) download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int a;
  5. int b;
  6. int c;
  7.  
  8. while((a == NULL) || (b == NULL) || (c == NULL)) {
  9. std::cout << "It's all a null.";
  10. break;
  11. }
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
It's all a null.