Strings in C, are used for storing text/characters.
For example, "My Name is Raj" is a string of characters.
C does not have a String type to easily create string variables.
You must use the char type and create an array of characters to make a string in C:
char MyName[] = "My Name is Raj"";