About 58 results
Open links in new tab
  1. std::cin, std::wcin - cppreference.net

    Mar 10, 2025 · The global objects std::cin and std::wcin control input from a stream buffer of implementation-defined type (derived from std::streambuf ), associated with the standard C …

  2. std::ios_base::sync_with_stdio - cppreference.net

    Sep 15, 2023 · The standard C++ streams are the following: std::cin , std::cout , std::cerr , std::clog , std::wcin , std::wcout , std::wcerr and std::wclog . The standard C streams are the …

  3. std::getline - cppreference.net

    May 12, 2024 · When consuming whitespace-delimited input (e.g. int n ; std:: cin >> n ; ) any whitespace that follows, including a newline character, will be left on the input stream.

  4. C++ reference - cppreference.net

    Dec 16, 2017 · Comprehensive reference for C++ programming language, including syntax, libraries, and examples to support developers in coding efficiently.

  5. std::basic_ios<CharT,Traits>::clear - cppreference.net

    Oct 1, 2024 · Parameters ... Return value (none) Exceptions If the new error state includes a bit that is also included in the exceptions () mask, throws an exception of type failure . Example …

  6. cppreference.net

    Mar 30, 2025 · This page was last modified on 30 March 2025, at 11:18.

  7. C reference - cppreference.net

    Jul 3, 2017 · Comprehensive reference for the C programming language, including syntax, library functions, and examples.

  8. std::cout, std::wcout - cppreference.net

    Mar 10, 2025 · This means that any input operation on std::cin executes std :: cout . flush ( ) (via std::basic_istream::sentry 's constructor). Similarly, std:: wcin . tie ( ) returns & std :: wcout . By …

  9. std::println - cppreference.net

    Mar 21, 2025 · Format args according to the format string fmt with appended ' \n ' (which means that each output ends with a new-line), and print the result to a stream.

  10. C language - cppreference.net

    Apr 26, 2025 · This is a reference of the core C language constructs.