I'd like to use cin and I used char for the int type (do you call it like that?) and it just shows one letter of what typed. How can I get the whole sentence?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
| show 2 more comments |
|
Since you're using c++ why not use
|
|||||
|
|
use cin.getline()
|
|||||||
|
char*and notchar– Itay Moav -Malimovka Jun 24 '11 at 1:57std::string. Tellingcinto get astd::stringmakes it read a line (sort of likefgetsin C), if I'm not mistaken. – Joey Adams Jun 24 '11 at 1:58getlinemust be used to get an entire line. – ildjarn Jun 24 '11 at 2:09