HI,
Once we accept an input from a keyboard, How can we add that character into a string in VC++?
Can anyone help me with this?
|
|
|||||
|
|
|
You can use To do this, After that, there are various ways to store the input from the user. First, you may store the character input directly into the string:
Second, you can append the input to an existing string:
As others have pointed, your question indicates that you are a beginner. If that is the case, you should read on the book/tutorial of your choice. You will get more complete and understandable answers, especially from a good book. If you don't know any, you can ask for a good one in StackOverflow - tag you question with recommendation. |
|||
|
|
|
|
|
||
|
|
|
|
Try the following:
This code will accept a string typed on the keyboard and store it into My guess is that you're in the process of learning C++. If so, my suggestion is to continue reading your C++ book. Keyboard input will surely be addressed in some upcoming chapter or the other. |
||
|
|
|
|
There are several ways to go about, depending of what you exactly need. Check the C++ I/O tutorial at this site: www.cplusplus.com |
||
|
|