fork(3) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. char ans;
  8. do
  9. {
  10. //code
  11.  
  12. }
  13. while(getchar() != 32 || getchar() != ' ');
  14.  
  15. cout << "Space pressed" << endl;
  16. return 0;
  17. }
  18.  
  19.  
Success #stdin #stdout 0s 3100KB
stdin
  
stdout
Space pressed