C programming

C Program to Print Factorial of a Number

C Program to Print Factorial of a Number Write a Program to Calculate the Factorial of a Number in C. Definition of a Factorial: The factorial of a number …

C Program to Calculate the Power of a Number

C Program to Calculate the Power of a Number Write a Program to Print the Power of a Number. This program calculates the power of a number using a for loop. The user inputs the base and…

Loops in C: For, Do-While, Nested Loops Statements

Loops in C: For, Do-While, Nested Loops Statements Loops: Loops are used when we want to execute a part of the program or a block of statements several times. For example,…

Program to check a number is divisible by 5 or not

Program to check a number is divisible by 5 or not Program to check a number is divisible by 5 or not using c programing. Here you can check whether the given number is divisible by 5 or not. For this we wi…

C Program to check whether the number is Odd or Even

C Program to check whether the number is Odd or Even Here using C program you can find out whether the number is odd or even. Odd number : Odd numbers are those numbers which cannot be divided into two …

Check year is leap year or not in c

Check year is leap year or not in c Leap Year: A leap year is a year that has one extra day (February 29), making it 366 days long instead of the usual 365 days. Leap years are added to keep our calen…

Largest number among to three number in c

Largest number among to three number in c C program to Find the Largest Number Among Three Numbers To find the largest number among three numbers, we compare them using basic conditional statements or log…

Which number is divisible by 5 or(||) 3 but not 15

Which number is divisible by 5 or(||) 3 but not 15 Input Positive Number and Find If it is Divisible by 5 or(||) 3 But Not 15. In this program we will be able to see that any number which is divisible by …

C Program to Find Area of a Rectangle

C Program to Find Area of a Rectangle Write a C program to input length and width of a rectangle and find area of the given rectangle. Here, you can see that we will find Area of Perimeter. The amount of …

That is All