Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 )

C program to convert Celsius to Fahrenheit:Here, we learn how to write a C program to convert Fahrenheit from centigrade?. We will write the C program to convert Fahrenheit...
July 31, 2021

Write a C program to enter a distance in to kilometer and convert it in to meter, feet, inches and centimeter

In this c program, we will convert distance input by the user in meters, feet, inches, and centimeters. We will also write the algorithm of c program to convert distance in meters, feet,...
July 30, 2021

Write a C program to interchange two numbers

C program to swap two numbers:C program to interchange two numbers. Swapping means interchanging. If the program has two variables a and b where a = 1 and b = 2,...
July 29, 2021

Write a program to calculate simple interest ( i=(p*r*n)/100 )

Logic to calculate simple interest:Write a program to calculate simple interest. How to calculate simple interest in C programmingi = (p*r*n)/100 Where,   i = Simple interest                p =...
July 29, 2021

Write a program to find area of triangle ( a=h*b*0.5 ) | a=area, h=height, b=base

Write a C program to input base and height of a triangle and find area of the given triangle. How to find area of a triangle in C...
July 28, 2021

Write a program to that performs as calculator (Addition, Multiplication, Division, Subtraction)

In this, we will discuss C Program to Addition Subtraction, Multiplication and division:In this post, we will learn about how to perform addition, subtraction multiplication, division of any...
July 27, 2021