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 replace the string space with a given character

C Program To Replace The String Space With A Given Character

In this tutorial we will learn writing the C program to replace the spaces from the string with given character. This program is little bit logical. Here we have to find the available space in the input string and then replace that space with the given character by user. How string space replacement with character … 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 check given character is vowel or consonant

C Program To Check Given Character Is Vowel Or Consonant

In this tutorial we are going to learn writing program in C to check a given character is vowel or consonant. To write the complete program we will use if else statement to check input character is equal to vowel or consonant. Before start writing C Program, lets understand about vowel and consonant. What is … Read more

C program to calculate Simple Interest with explanation

C Program To Calculate Simple Interest With Explanation

In this tutorial, we are going to learn the writing program in c to calculate the Simple Interest. Simple Interest is a mathematical term and we have a mathematical formula for this calculation. Before starting writing the program let’s understand simple interests. What is Simple Interest? Simple interest is a method to calculate the interest … 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