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
chartype and create an C Arrays of characters to make a string in C:
char string[] = "Hello World!";Strings are used for storing text/characters.
char type and create an C Arrays of characters to make a string in C:char string[] = "Hello World!";