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,988 questions

51,933 answers

573 users

What is the list of standard headers files in C++11

1 Answer

0 votes
// ISO/IEC 14882:2011 (C++11) - standard headers

/*
<iostream>            <vector>    <algorithm>  <system_error>
<array>               <iomanip>   <ostream>    <thread>
<atomic>              <ios>       <queue>      <tuple>
<bitset>              <iosfwd>    <random>     <type_traits>
<chrono>              <numeric>   <ratio>      <typeindex>
<codecvt>             <istream>   <regex>      <typeinfo>
<complex>             <iterator>  <new>        <unordered_map>
<condition_variable>  <limits>    <set>        <unordered_set>
<deque>               <list>      <sstream>    <utility>
<exception>           <locale>    <stack>      <valarray>
<forward_list>        <map>       <stdexcept>  <initializer_list>
<fstream>             <memory>    <streambuf>  <strstream>
<functional>          <mutex>     <string>     <scoped_allocator>
<future>                   
*/

// + C11 - standard headers

/*
<cassert>   <cinttypes>  <csignal>    <cstdio>   <cwchar>
<ccomplex>  <ciso646>    <cstdalign>  <cstdlib>  <cwctype>
<cctype>    <climits>    <cstdarg>    <cstring>  <ctime>
<cerrno>    <clocale>    <cstdbool>   <ctgmath>  <cstddef>
<cfenv>     <cmath>      <cstdint>    <cuchar>   <csetjmp>
<cfloat>            
*/

 



answered Jul 27, 2024 by avibootz

Related questions

1 answer 90 views
1 answer 87 views
1 answer 95 views
1 answer 89 views
1 answer 88 views
1 answer 86 views
1 answer 97 views
...