Open In App

C++ getchar() Function

Last Updated : 27 Nov, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

getchar( ) is a function that takes a single input character from standard input. The major difference between getchar( ) and getc( ) is that getc( ) can take input from any number of input streams but getchar( ) can take input from a single standard input stream.

It is present inside the stdin.h C library. Just like getchar, there is also a function called putchar( ) that prints only one character to the standard output screen

Syntax:

int getchar(void);

Return Type: The input from the standard input is read as an unsigned char and then it is typecasted and returned as an integer value(int) or EOF(End Of File). A EOF is returned in two cases, 1. when file end is reached. 2. When there is an error during execution.

Example:

C++




// C++ Program to implement
// Use of getchar()
#include <cstdio>
#include <iostream>
  
using namespace std;
  
int main()
{
    char x;
  
    x = getchar();
    cout << "The entered character is : " << x;
  
    return 0;
}


Output: 

Output of the Program

Output

Example :

C++




// C++ Program to implement
// Use of getchar() and putchar()
#include <cstdio>
#include <iostream>
  
using namespace std;
  
int main()
{
    char x;
  
    x = getchar();
  
    cout << "The entered character is : ";
    putchar(x);
  
    return 0;
}


Output: 

Output of the Program

Output



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads