Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to retrieve the next character from the stream without consuming it in C++

1 Answer

0 votes
#include <iostream>
#include <cctype> 

int main() {
    std::cout << "Please enter a word: ";
    std::cout.flush(); // clear the input stream (cin) as preparation for the next input 

    std::cin >> std::ws; // skip the leading whitespace include newline
    int ch = std::cin.peek(); // retrieve the next character from the stream without consuming it
    
     std::cout << "ch = " << (char)ch << '\n';

    if (ch == EOF) {
        return 1;
    }

    std::string str;
    std::cin >> str;
    std::cout << "You entered the word: " << str << '\n';
}
  
  
 
/*
run:
 
Please enter a word: Programming
ch = P
You entered the word: Programming

*/

 



answered Nov 22, 2024 by avibootz
edited Nov 22, 2024 by avibootz

Related questions

1 answer 88 views
1 answer 146 views
1 answer 160 views
1 answer 127 views
1 answer 134 views
...