About 10,700,000 results
Open links in new tab
  1. c++ - How does cin work? - Stack Overflow

    Apr 28, 2016 · cin is a blocked input. Whatever comes from the keyboard is stored in a buffer. When you press enter the system passes the buffer to the application code (std::cin code). …

  2. What is the C equivalent to the C++ cin statement?

    Sep 16, 2010 · 3 There is no close equivalent to cin in C. C++ is an object oriented language and cin uses many of its features (object-orientation, templates, operator overloading) which are …

  3. if (cin >> x) - Why can you use that condition? - Stack Overflow

    Jul 22, 2011 · 79 cin is an object of class istream that represents the standard input stream. It corresponds to the cstdio stream stdin. The operator >> overload for streams return a …

  4. What are the rules of the std::cin object in C++? - Stack Overflow

    Apr 30, 2009 · I am currently reading in with std::cin >> for the strings I expect to be single words and getline(std::cin, string) for the strings with spaces. I am not getting the right output, though.

  5. c++ - std::cin input with spaces? - Stack Overflow

    Apr 30, 2011 · Best answer so far. When using std::getline(std::cin, s) I would get a very messy and I would say, interrupted input when waiting for inputs in a while / for loop. This option …

  6. cin, cout, system не являются однозначными, как убрать ошибки?

    cin, cout, system не являются однозначными, как убрать ошибки? Вопрос задан 5 лет 11 месяцев назад Изменён 4 года 10 месяцев назад Просмотрен 73k раз

  7. How to cin Space in c++? - Stack Overflow

    Using cin's >> operator will drop leading whitespace and stop input at the first trailing whitespace. To grab an entire line of input, including spaces, try cin.getline().

  8. How do I use cin for an array - Stack Overflow

    Sep 20, 2018 · How do I use cin for an array Asked 7 years, 1 month ago Modified 1 year, 8 months ago Viewed 78k times

  9. c++ - Can you use "cin" with string? - Stack Overflow

    Aug 21, 2020 · I was taught that you have to use gets(str) to input a string and not cin. However I can use cin just fine in the program below. Can someone tell me if you can use cin or not. …

  10. c++ - Program not waiting for cin - Stack Overflow

    Sep 5, 2012 · 13 If the input stream isn't empty when you call cin, then cin uses the data already in the buffer instead of waiting for more from the user. You're using the extraction operator, so …