The C language does not provide an inbuilt data type for strings but it has an access specifier “%s” which can be used to directly print and read strings . You can see in the above program that string can also be read using a single scanf statement.
Read moreWhat does Strcat do in C?
strcat() arguments The strcat() function concatenates the destination string and the source string , and the result is stored in the destination string.
Read more