C program to concatenate two strings

C Program To Concatenate Two Strings

In this tutorial we are going to learn writing C program to concatenate two given strings. To concatenate we have multiple ways to do. Here we will see two ways first one using library function strcat() and second one using manually using loop concepts. How our string concatenate program will work? C program to concatenate … Read more

C program to check given two string are equal or not

In this tutorial we are going to learn writing C program to check given two string are equal or not. There is multiple way to check this one. In this tutorial we will learn two ways to do this. First we will see using the library function and second we will use own logic to … Read more

C program to remove blank space from string

In this tutorial we are going to write a program to remove all blank spaces available in the string. The logic we are going to use will be very similar to the below program. You can check it out C program to replace blank space of string with given character. How our space removal program … Read more

C program to separate characters in a given string

C Program To Separate Characters In A Given String

In this tutorial we are going to learn writing program in c to separate the characters in a given string. Basically separating means we are just going to print characters one by one from the given string. How separate character C program will work? C Program to separate characters in String Output

C program to count alphabets, digits and special characters

C Program To Count Alphabets, Digits And Special Characters

In this tutorial we will learn writing C program to count the total occurrence of alphabets, digits and special characters in a given string. To store the occurrence for all this three types, we need three integer variable that will work as counter. Also check this similar program C Program to count the occurrence of … Read more

C Program to Replace First Occurrence Of Vowel With ‘-‘ in String

C Program To Replace First Occurrence Of Vowel With - In String

In this tutorial we will learn writing the C program to replace first vowel of string with symbol ‘-‘ . This program will be very easy because we just have to find first character which is vowel and then replace it with ‘-‘. You can see this program C Program to check given character is … Read more

C program to print the highest frequency character in a String

C Program To Print The Highest Frequency Character In A String

In this tutorial we will learn writing program in C  to print the highest frequency character In A String with count. This program will be little bit tricky. We will have one integer variable which will store the counter and one char variable to store character. How our highest frequency char counter program will work? … Read more

C program to count Occurrence Of Vowels & Consonants In A String

C Program To Count Occurrence Of Vowels & Consonants In A String

In this tutorial we are going to learn writing C program to count the Occurrence of vowels and consonants in a given string. Here we will have two variables that will store the count. Using if else we will check Vowel and Consonants. If vowel occurs then increase vowel counter other wise increase consonant counter. … Read more

C program to delete vowels in a given string

C Program To Delete Vowels In Given String

In this tutorial we will learn writing c program to delete all vowels in a given string. This program will be little bit tricky because we have to shift the character after removing the vowel. I recommend please visit below program. It will help you to build some basic concepts C Program to convert lower … Read more

C program to convert lowercase vowel to uppercase in string

C Program To Convert Lowercase Vowel To Uppercase In String

In this tutorial we will learn writing C program to convert all lowercase vowel to uppercase in given string. This program is very similar to the program to convert lowercase to uppercase in string using C. How lowercase vowel to uppercase conversion program works C Program to convert lowercase vowel into uppercase of String Output … Read more