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

1 Answer

0 votes
// ISO/IEC 14882:1998 (C++98) - standard headers

/*
<iostream>    <algorithm>  <iomanip>  <list>       <ostream>    
<bitset>      <ios>        <locale>   <queue>      <string>
<complex>     <iosfwd>     <map>      <set>        <typeinfo>
<deque>       <streambuf>  <memory>   <sstream>    <utility>
<exception>   <istream>    <new>      <limits>     <valarray>
<fstream>     <iterator>   <numeric>  <stdexcept>  <vector>
<functional>  <stack> 
*/

// + C94 - standard headers

/*
<cassert>  <ciso646>  <cmath>    <cstdio>   <ctime>
<cctype>   <climits>  <csignal>  <cstdlib>  <cwchar>
<cerrno>   <clocale>  <cstdarg>  <cstring>  <cstddef>
<cfloat>   <csetjmp>  <cwctype>
*/

 



answered Jul 27, 2024 by avibootz

Related questions

1 answer 106 views
1 answer 100 views
1 answer 110 views
1 answer 96 views
1 answer 111 views
1 answer 98 views
1 answer 114 views
...