Advertisement
prat3492

Untitled

Aug 30th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7.   char x[100];
  8.   if (cin.getline (x, sizeof (x)) == 0)
  9.     return 0;
  10.   return 1;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement