Guest User

Untitled

a guest
Dec 4th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. char sentence[256]={0};
  2. cin.getline(sentence,256);
  3.  
  4. char* sentence;
  5. cin.getline(sentence,256);
  6.  
  7. char* sentence;
  8. cin.getline(sentence,256); // wrong
Add Comment
Please, Sign In to add comment