What is the use of cin.get()?
What is use of cin.get()?
Hey @aryangrover
cin.get() is used for accessing character array. It includes white space characters. Generally, cin with an extraction operator (>>) terminates when whitespace is found. However, cin.get() reads a string with the whitespace.
for example:
#include<iostream>
using namespace std;
int main()
{
char name[25];
cin.get(name, 25);
cout << name;
return 0;
}
Input:
Hello all
Output:
Hello all
while if we used cin for the same thing:
#include<iostream>
using namespace std;
int main()
{
char name[25];
cin >> name;
cout << name;
return 0;
}
Input:
Hello all
Output:
Hello
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.