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

C Program to convert lowercase char to uppercase of string

C Program To Convert Lowercase Char To Uppercase Of String

In this tutorial we are going to learn how to write a program in C to convert a lowercase string to uppercase. There are multiple ways to write the program in C for the above problem. Here we will see 3 ways to do this. In this tutorial we will learn writing the C program … Read more

C program to check given character is digit or not

C Program To Check Given Character Is Digit Or Not

In this tutorial we will learn writing C Program to check a given character is digit or not. We have multiple ways to write this program. Here we will see two ways first one will be checking with if else and second we will use isdigit() function available in ctype.h. This program is very similar … Read more

C Program to convert Fahrenheit to Celsius

C Program To Convert Fahrenheit To Celsius

In this tutorial, we will learn the writing program in c to convert a given temperature from Fahrenheit to celsius. This program will be simple because we have a mathematical conversion formula to convert Fahrenheit to Celsius. We will use this conversion formula in the programming logic. How our Fahrenheit to Celsius conversion program will … Read more

C Program to convert Celsius to Fahrenheit

C Program To Convert Celsius To Fahrenheit

In this tutorial, we will learn the writing program in c to convert a given temperature from celsius to Fahrenheit. This program will be simple because we have a mathematical formula for this conversion. Only we have to apply these conversion formula in the programming logic. How our Celsius to Fahrenheit conversion program will behave? … Read more

C Program to check the given year is a leap year or not

C Program To Check The Given Year Is A Leap Year Or Not

In this tutorial, we will learn to write the program in C to check whether a given year is a leap year or not? This program required some knowledge of leap year to build the logic. So let’s know first about the leap year. What is Leap year? A Leap year is a calendar year … Read more

C Program to convert Decimal number to Octal number

C Program To Convert Decimal Number To Octal Number

In this tutorial, we will learn to write a program in c to convert a decimal number into an octal number. Here we will use the division by 8 concepts to convert it into an octal number. Before moving towards the writing program let’s know about the Octal numbers. What is an Octal Number? An octal … Read more

C Program to Convert Decimal Number into Binary

C Program To Convert Decimal Number Into Binary

In this tutorial, we will learn to write a program in c to convert a decimal number into a binary number. Here we will use the division concept to convert it into a binary number. Before moving towards the writing program let’s know about the binary numbers. What is the Binary Number? A binary number is a number that … Read more