String in C Programming Language In this post, We will learn about string in C programming language. Introduction A string in C is merely an array of characters. The length of a string is determined by a terminating null character: '\0'. So, a string with the contents, say, "abc" has four characters: 'a', 'b', 'c', and the terminating null character. Initialize String in C Suppose you want to store Rozgardesh in String str you can do using one of below way 1. char str[] = "RozgarDesh"; 2. char str[50] = "RozgarDesh"; 3. char str[] = {'R','o','z','g','a','r','d','e','s','h','\0'}; 4. char str[11] = {'R','o','z','g','a','r','d','e','s','h','\0'}; Display String Here is an example to display the value of a string variable on th...