What does C++ standard library contains | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does C++ standard library contains

While learning c++ i have most of the times used this using namespace std; and know that it means to include features from c++ standard library. but what is c++ standard libraray, what does it contain. plz help with that

31st May 2017, 5:15 PM
Hiren Bhanushali
Hiren Bhanushali - avatar
2 Answers
31st May 2017, 10:24 PM
jay
jay - avatar
+ 4
The main thing would be cin and cout. This is generally what you would include it for. It also contains things in these categories: <array>, <algorithm>, <bitset>, <cassert>, <cctype>, <cerrno>, <cfloat>, <ciso646>, <climits>, <clocale>, <cmath>, <complex>, <csetjmp>, <csignal>, <cstdarg>, <cstddef>, <cstdio>, <cstdlib>, <cstring>, <ctime>, <cwchar>, <cwctype>, <deque>, <exception>, <fstream>, <functional>, <iomanip>, <ios>, <iosfwd>, <iostream>, <istream>, <iterator>, <limits>, <list>, <locale>, <map>, <memory>, <new>, <numeric>, <ostream>, <queue>, <set>, <sstream>, <stack>, <stdexcept>, <streambuf>, <string>, <typeinfo>, <utility>, <valarray>, <vector>
31st May 2017, 5:26 PM
Rrestoring faith
Rrestoring faith - avatar