In C programming language, array of characters is called a string. The length of a string is determined by a terminating null character: ‘\0’. The terminating null character has the value zero.
- C program to concatenate two strings
- C program to find string length
- C program to convert a string to lower case
- C program to convert a string to upper case
- C program to change string to upper case without strupr
- C program to Change string to lower case without strlwr
- C program to reverse a string enter by user
- C Program to count number of alphabets, digits and special characters in string
- C program to compare two strings using strcmp
- C Program to Count number of Lowercase and Uppercase Letters