Région de recherche :

Date :

https://www.geeksforgeeks.org › c-library-string-h

C Library – <string.h> - GeeksforGeeks

string.h is a standard header file in the C language that contains functions for manipulating strings (arrays of characters). <string.h> header file contains some useful string functions that can be directly used in a program by invoking the #include preprocessor directive.

https://cplusplus.com › reference › string › string

string - C++ Users

The string class is an instantiation of the basic_string class template that uses char (i.e., bytes) as its character type, with its default char_traits and allocator types (see basic_string for more info on the template).

https://www.programiz.com › c-programming › c-strings

Strings in C (With Examples) - Programiz

In this tutorial, you'll learn about strings in C programming. You'll learn to declare them, initialize them and use them for various I/O operations with the help of examples.

https://lucidar.me › fr › c-class › lesson-10-03-string-h-library

Cours 10.3. La bibliothèque string.h | Le blog de Lulu

La bibliothèque string.h est une bibliothèque standard du C. Elle contient diverses fonctions pour la manipulation des chaînes de caractères. Cette page présente quelques-unes des plus fréquemment utilisées, mais cette présentation n'est pas exhaustive.

https://en.cppreference.com › w › c › string

Strings library - cppreference.com

Strings library: Algorithms: Numerics: Date and time utilities: Input/output support: Localization support: Concurrency support (C11) Technical Specifications: Symbol index Strings library. Byte strings: Multibyte strings: Wide strings Contents. 1 Null-terminated byte string management; 2 Null-terminated multibyte string management; 3 Null-terminated wide string management; 4 See also Null ...

https://en.cppreference.com › w › cpp › string

Strings library - cppreference.com

The strings library provides functions to create, inspect, and modify such sequences: null-terminated byte strings (NTBS) helper functions (including support of wide character types ), null-terminated multibyte strings (NTMBS) helper functions.

https://en.cppreference.com › w › cpp › string › basic_string

std::basic_string - cppreference.com

The class template basic_string stores and manipulates sequences of character-like objects, which are non-array objects of TrivialType and StandardLayoutType. The class is dependent neither on the character type nor on the nature of operations on that type.

https://www.gnu.org › software › c-intro-and-ref › manual › html_node › Strings.html

Strings (GNU C Language Manual)

A string in C is a sequence of elements of type char, terminated with the null character, the character with code zero. Programs often need to use strings with specific, fixed contents. To write one in a C program, use a string constant such as "Take me to your leader!" .

https://www.gnu.org › software › libc › manual › html_node › String-and-Array-Utilities.html

String and Array Utilities (The GNU C Library)

The GNU C Library provides an extensive set of string utility functions, including functions for copying, concatenating, comparing, and searching strings. Many of these functions can also operate on arbitrary regions of storage; for example, the memcpy function can be used to copy the contents of any kind of array.

https://www.programiz.com › c-programming › string-handling-functions

String Manipulations In C Programming Using Library Functions

String Manipulations In C Programming Using Library Functions. You need to often manipulate strings according to the need of a problem. Most, if not all, of the time string manipulation can be done manually but, this makes programming complex and large.