List of C language string programs | String programs in c

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.

  1. C program to concatenate two strings
  2. C program to find string length
  3. C program to convert a string to lower case
  4. C program to convert a string to upper case
  5. C program to change string to upper case without strupr
  6. C program to Change string to lower case without strlwr
  7. C program to reverse a string enter by user
  8. C Program to count number of alphabets, digits and special characters in string
  9. C program to compare two strings using strcmp
  10. C Program to Count number of Lowercase and Uppercase Letters

Leave a Comment