Character StringsInitialization of stringsInitialization of Strings in CString InitializationString initialization in C refers to the process of giving an initial value to a string variable when it is declared. In C, a string is declared as an array of characters and can be initialized with a string literal.The syntax for initializing a string in C is as follows:char string_name[array_size] = "initial_value";Explanation string_name is the name of the string variablearray_size is the size of the character array that will hold the string"initial_value" is the string literal that will be used to initialize the string. noteThe size of the array must be large enough to hold the initial value, including the null terminator.For example:The following code declares a string named greeting with an initial value of "Hello, World!":char greeting[20] = "Hello, World!";In this example, the size of the character array is 20, which is large enough to hold the string "Hello, World!" and its null terminator.String Initialization - ExampleHere's an example of a C program that initializes a string and uses it:#include <stdio.h>int main(){ // Initialize a string with a greeting message char greeting[20] = "Hello, World!"; // Print the greeting message to the console printf("%s\n", greeting); // Return 0 to indicate that the program has executed successfully return 0;}Run Example >>Output:ExplanationWe initialize a string named greeting with an initial value of "Hello, World!". We then use the printf function to print the contents of the string to the console. The format specifier %s is used to print a string, and the \n character is used to print a newline after the message. Finally, the program returns 0 to indicate that it has executed successfully.String Declaration vs InitializationHere is a table summarizing the difference between string declaration and string initialization in C:String DeclarationString InitializationSyntax: char string_name[array_size];Syntax: char string_name[array_size] = "initial_value";Declares a variable that can hold a string of charactersDeclares a variable and assigns an initial value to itString variable does not have an initial valueString variable has an initial valueExample: char greeting[20];Example: char greeting[20] = "Hello, World!";noteConclusion: String declaration creates a variable that can hold a string of characters, while string initialization creates a variable and assigns an initial value to it.