Skip to content
Related Articles
Open in App
Not now

Related Articles

cin get() in C++ with Examples

Improve Article
Save Article
  • Difficulty Level : Basic
  • Last Updated : 17 Jan, 2020
Improve Article
Save Article

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.

Syntax:

cin.get(string_name, size);

Example 1:




// C++ program to demonstrate cin.get()
  
#include <iostream>
using namespace std;
  
int main()
{
    char name[25];
    cin.get(name, 25);
    cout << name;
  
    return 0;
}


Input:

Geeks for Geeks

Output:

Geeks for Geeks

Example 2:




// C++ program to demonstrate cin.get()
  
#include <iostream>
using namespace std;
  
int main()
{
    char name[100];
    cin.get(name, 3);
    cout << name;
  
    return 0;
}


Input:

GFG

Output:

GF
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!