Guest User

Untitled

a guest
Aug 24th, 2021
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. -> cat test.cpp
  2. #include <iostream>
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.     int x;
  8.     cin >> x;
  9.     cout << cin.fail() << endl;
  10. }
  11.  
  12. -> g++ test.cpp -o main.o
  13. -> ./main.o
  14. penis
  15. 1
  16.  
  17. -> ./main.o
  18. 153
  19. 0
Add Comment
Please, Sign In to add comment