data type
String data type is a data type modeled according to the idea of formal string. String is a very important and useful data type, which can be implemented in almost all programming languages.
In some languages, they can be obtained as basic types, while in other languages, they can be obtained as compound types. The syntax of most high-level languages allows strings that are usually referenced in some way to represent instances of string data types; This meta-string is called "text" or "string text".
Extended data
character string
The string in C language is actually a char array ending with the character' \0'. You don't need a reference library to use character types, but you need some functions in the C standard library to operate on strings. They are different from character arrays. Using these functions requires a reference to the header file.
File input/output
In C language, input and output are realized by a set of functions in the standard library. In ANSI C, these functions are defined in the header file.
Standard input/output
The standard I/O library predefined three kinds of standard input/output:
1, standard input standard input
2.stdout standard output
3.stderr input and output errors
Baidu Encyclopedia-String
Baidu encyclopedia -c language