Strings
Strings are used for storing text/characters.
- C does not have a String type to easily create string variables. Instead, you must use the
char
type and create an C Arrays of characters to make a string in C:
Strings are used for storing text/characters.
char
type and create an C Arrays of characters to make a string in C: