Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1.  
  2. #include <vector>
  3. #include <iostream>
  4. #include <windows.h>
  5.  
  6. using namespace std;
  7.  
  8.  
  9. int main()
  10. {
  11. vector<char> str(MAX_PATH);
  12.  
  13. cout << "Enter your name: ";
  14. scanf(str.data());
  15.  
  16. cout << "Hello " << str.data() << " :)" << endl;
  17.  
  18. return -14;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement