cin.get()用于访问字符数组。它包括空格字符。通常,发现空白时,带有提取运算符(>>)的cin终止。但是,cin.get()读取带有空格的字符串。
句法:
cin.get(string_name, size);
范例1:
// C++ program to demonstrate cin.get()
#include
using namespace std;
int main()
{
char name[25];
cin.get(name, 25);
cout << name;
return 0;
}
输入:
Geeks for Geeks
输出:
Geeks for Geeks
范例2:
// C++ program to demonstrate cin.get()
#include
using namespace std;
int main()
{
char name[100];
cin.get(name, 3);
cout << name;
return 0;
}
输入:
GFG
输出:
GF
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。