Tag Archives: c_string

C Program to Count Alphabets Digits Special characters in a string

Count Alphabets Digits Special characters Write a C Program to Count Alphabets Digits Special characters in a string. Here’s simple C Program to Count Alphabets Digits Special characters in a string in C Programming Language. C – Strings :  Strings are actually one-dimensional array of characters terminated by a null character ‘\0’. Thus a null-terminated string… Read More »

C Program to Count Uppercase Lowercase Special characters in string

Count Uppercase Lowercase Special characters Write a C Program to Count Uppercase Lowercase Special characters in string. Here’s simple C Program to Count Uppercase Lowercase Special characters in string in C Programming Language. C – Strings :  Strings are actually one-dimensional array of characters terminated by a null character ‘\0’. Thus a null-terminated string contains the… Read More »

C Program to Sort strings Lexicographically (Dictionary Order)

Sort strings Lexicographically Write a C Program to Sort strings Lexicographically (Dictionary Order). Here’s simple C Program to Sort strings Lexicographically (Dictionary Order) in C Programming Language. C – Strings :  Strings are actually one-dimensional array of characters terminated by a null character ‘\0’. Thus a null-terminated string contains the characters that comprise the string followed… Read More »

Write a C Program to Convert lowercase to uppercase and vice versa

Convert lowercase to uppercase and vice versa Write a C Program to Convert lowercase to uppercase and vice versa. Here’s simple C Program to Convert lowercase to uppercase and vice versa in C Programming Language. C – Strings :  Strings are actually one-dimensional array of characters terminated by a null character ‘\0’. Thus a null-terminated string… Read More »