In this tutorial, i am going to show you how to print hollow sandglass star patterns with the help of for loop and while loop in c programs. All C…
Category: <span>C</span>
In this tutorial, i am going to show you how to print left arrow alphabets pattern with the help of for loop and while loop in c programs. All C…
In this tutorial, i am going to show you how to check whether a number is prime, Armstrong, or perfect number in c program with the help of functions and…
In this tutorial, i am going to show you how to calculate electricity bill in c program. Using the following condition, write a c program to calculate electricity unit charge…
In this tutorial, i am going to show you how to find factors of a number in c program with the help of For Loop, While Loop, Functions, and pointer.…
In this tutorial, i am going to show you how to find factorial of a number in c program with the help of for loop, while loop, recursion and Function.…
In this tutorial, i am going to show you how to find first digit of a number in c program using log() & pow() , while loop and functions. All…
In this tutorial, i am going to show you how to find and print first and last digit of a number in c program using log() & pow() , while…
The greatest common divisor (GCD) of two or more numbers is the greatest common factor number that divides them, exactly. It is also called the highest common factor (HCF). For example,…
In this tutorial, i am going to show you how to find the generic root of a number with the help of while loop and functions. All C Programs to…