Answers for "how to get a console input in C++ to a string"

C++
2

get data from terminal c++

int i;
  cout << "Please enter an integer value: ";
  cin >> i;
Posted by: Guest on June-17-2020

Code answers related to "how to get a console input in C++ to a string"

Browse Popular Code Answers by Language