The standard library contains core utilities provided by all implementations of the language.
Every time I need to use std::bind, I end up using a lambda instead. So when should I use …
c++ c++11 lambda bind standard-libraryI've read that many pseudo-random number generators require many samples in ordered to be "warmed up". Is that the case …
c++ random c++11 standard-library mersenne-twisterI know most compilers allow both: #include <stdio.h> and #include <cstdio> But someone argued that &…
c++ stdio standard-libraryI have C++/C mixed code which I build on a) Visual C++ 2010 Express(Free version) on Win-7 x32. b) …
c++ standard-libraryI am curious as to how printf works internally within Linux. I don't understand how it writes data to STDOUT. …
c assembly printf standard-libraryWhat does the "c" mean in the cout, cin, cerr and clog names? I would say char but I haven't …
c++ iostream standard-libraryI've read on Stack Overflow that some C functions are "obsolete" or "should be avoided". Can you please give me …
c standard-library obsoleteI just started learning Python a few months ago, and I'm trying to understand the differences between the different __get*__ …
python getter-setter standard-library accessorHow can I check if a Perl module is part of the core - i.e. it is part of …
perl module standard-libraryI was confused by the numerous standards and interfaces for C and C++ programming. There's ANSI C, ISO C, GLIBC, …
c++ c posix standards standard-library