String Header File In Dev C++
C++ Header Files List
The string class type introduced with Standard C. The C-Style Character String. The C-style character string originated within the C language and continues to be supported within C. This string is actually a one-dimensional array of characters which is terminated by a null character '0'. Thus a null-terminated string contains the.
This page was last modified on 22 March 2020, at 23:49. This page has been accessed 73,058 times. Privacy policy; About cppreference.com; Disclaimers. Aug 02, 2017 Until Modules show up (the standard is in development) the only standard way to invoke predefined structures and functions in C is to declare them in a translation unit. Obviously copying and pasting long lists of declarations would be unwieldy.
Header files for the C++ standard library and extensions, by category.
String Header File C++
Headers by category
Category | Headers |
---|---|
Algorithms | <algorithm>, <cstdlib>, <numeric> |
Atomic operations | <atomic>11 |
C library wrappers | <cassert>, <ccomplex>11 a b, <cctype>, <cerrno>, <cfenv>11, <cfloat>, <cinttypes>11, <ciso646>b, <climits>, <clocale>, <cmath>, <csetjmp>, <csignal>, <cstdalign>11 a b, <cstdarg>, <cstdbool>11 a b, <cstddef>, <cstdint>11, <cstdio>, <cstdlib>, <cstring>, <ctgmath>11 a b, <ctime>, <cuchar>11, <cwchar>, <cwctype> |
Concepts | <concepts>20 |
Containers | |
Sequence containers | <array>11, <deque>, <forward_list>11, <list>, <vector> |
Ordered associative containers | <map>, <set> |
Unordered associative containers | <unordered_map>11, <unordered_set>11 |
Container adaptors | <queue>, <stack> |
Container views | <span>20 |
Errors and exception handling | <cassert>, <exception>, <stdexcept>, <system_error>11 |
General utilities | <any>17, <bitset>, <charconv>17, <cstdlib>, <execution>17, <functional>, <memory>, <memory_resource>17, <optional>17, <ratio>11, <scoped_allocator>11, <tuple>11, <type_traits>11, <typeindex>11, <utility>, <variant>17 |
I/O and formatting | <cinttypes>11, <cstdio>, <filesystem>17, <fstream>, <iomanip>, <ios>, <iosfwd>, <iostream>, <istream>, <ostream>, <sstream>, <streambuf>, <strstream>c, <syncstream>20 |
Iterators | <iterator> |
Language support | <cfloat>, <climits>, <codecvt>11 a, <compare>20, <contract>20, <coroutine>20, <csetjmp>, <csignal>, <cstdarg>, <cstddef>, <cstdint>11, <cstdlib>, <exception>, <initializer_list>11, <limits>, <new>, <typeinfo>, <version>20 |
Localization | <clocale>, <codecvt>11 a, <cvt/wbuffer>, <cvt/wstring>, <locale> |
Math and numerics | <bit>20, <cfenv>11, <cmath>, <complex>, <cstdlib>, <limits>, <numeric>, <random>11, <ratio>11, <valarray> |
Memory management | <allocators>, <memory>, <memory_resource>17, <new>, <scoped_allocator>11 |
Multithreading | <atomic>11, <condition_variable>11, <future>11, <mutex>11, <shared_mutex>14, <thread>11 |
Ranges | <ranges>20 |
Regular expressions | <regex>11 |
Strings and character data | <cctype>, <cstdlib>, <cstring>, <cuchar>11, <cwchar>, <cwctype>, <regex>11, <string>, <string_view>17 |
Time | <chrono>11, <ctime> |
11 Added in the C++11 standard.
14 Added in the C++14 standard.
17 Added in the C++17 standard.
20 Added in the draft C++20 standard.
a Deprecated in the C++17 standard.
b Removed in the draft C++20 standard.
c Deprecated in the C++98 standard.
Category | Headers |
---|---|
Algorithms | <algorithm> |
C library wrappers | <cassert>, <cctype>, <cerrno>, <cfenv>, <cfloat>, <cinttypes>, <ciso646>, <climits>, <clocale>, <cmath>, <csetjmp>, <csignal>, <cstdarg>, <cstdbool>, <cstddef>, <cstdint>, <cstdio>, <cstdlib>, <cstring>, <ctgmath>, <ctime>, <cwchar>, <cwctype> |
Containers | |
Sequence containers | <array>, <deque>, <forward_list>, <list>, <vector> |
Ordered associative containers | <map>, <set> |
Unordered associative containers | <unordered_map>, <unordered_set> |
Adaptor containers | <queue>, <stack> |
Errors and exception handling | <exception>, <stdexcept>, <system_error> |
I/O and formatting | <filesystem>, <fstream>, <iomanip>, <ios>, <iosfwd>, <iostream>, <istream>, <ostream>, <sstream>, <streambuf>, <strstream> |
Iterators | <iterator> |
Localization | <codecvt>, <cvt/wbuffer>, <cvt/wstring>, <locale> |
Math and numerics | <complex>, <limits>, <numeric>, <random>, <ratio>, <valarray> |
Memory Management | <allocators>, <memory>, <new>, <scoped_allocator> |
Multithreading | <atomic>, <condition_variable>, <future>, <mutex>, <shared_mutex>, <thread> |
Other utilities | <bitset>, <chrono>, <functional>, <initializer_list>, <tuple>, <type_traits>, <typeinfo>, <typeindex>, <utility> |
Strings and character data | <regex>, <string>, <string_view> |
See also
Using C++ library headers
C++ standard library
- C++ Basics
- C++ Object Oriented
- C++ Advanced
- C++ Useful Resources
- Selected Reading
C++ provides following two types of string representations −
- The C-style character string.
- The string class type introduced with Standard C++.
The C-Style Character String
The C-style character string originated within the C language and continues to be supported within C++. This string is actually a one-dimensional array of characters which is terminated by a null character '0'. Thus a null-terminated string contains the characters that comprise the string followed by a null.
The following declaration and initialization create a string consisting of the word 'Hello'. To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word 'Hello.'
If you follow the rule of array initialization, then you can write the above statement as follows −
Following is the memory presentation of above defined string in C/C++ −
Actually, you do not place the null character at the end of a string constant. The C++ compiler automatically places the '0' at the end of the string when it initializes the array. Let us try to print above-mentioned string −
When the above code is compiled and executed, it produces the following result −
C++ supports a wide range of functions that manipulate null-terminated strings −
Sr.No | Function & Purpose |
---|---|
1 | strcpy(s1, s2); Copies string s2 into string s1. |
2 | strcat(s1, s2); Concatenates string s2 onto the end of string s1. |
3 | strlen(s1); Returns the length of string s1. |
4 | strcmp(s1, s2); C++ variables list. An example of simple variable declaration and initialization of both are as follows. The advantage of using a short over an int or long when only short numbers are required to be stored, is that it takes up less memory.Longs are declared by using the long data-type, and shorts are declared by using the short data-type, and the constants for both are simply written by writing the numbers. 1float variablename = 3.141f;Care must be taken, however, with float (and other decimal) operations, as rounding and precision problems to do with how the numbers are stored can trip you up (we don't have infinite memory for recurring decimals like 1/3 for example) - I recommend reading for more information on this if you're interested. Returns 0 if s1 and s2 are the same; less than 0 if s1<s2; greater than 0 if s1>s2. |
5 | strchr(s1, ch); Returns a pointer to the first occurrence of character ch in string s1. |
6 | strstr(s1, s2); Returns a pointer to the first occurrence of string s2 in string s1. |
Following example makes use of few of the above-mentioned functions −
When the above code is compiled and executed, it produces result something as follows −
The String Class in C++
The standard C++ library provides a string class type that supports all the operations mentioned above, additionally much more functionality. Let us check the following example −
When the above code is compiled and executed, it produces result something as follows −