Program to find prime number in C. Prime number : A prime number is a number whose only factors are 1 and itself. That means there is no whole number that evenly divides the prime number. Let’s write a program… Continue Reading →
Number Patterns: In C language you can print any number pattern. Here, this program teach you how print all combination of 123.
Traverse: Traverse means to view or display or by define it “Transverse means to move or travel through an area.”
This program swaps the value stored in two different variables. To perform this task, third variable is declared.
In this program we learn to print Sum and Average of entered input(numbers) by user.
This program takes two operands from user and performs the calculation on the two operands depending upon the operator entered by the user.
A program to print number patterns in C. Number Patterns: In C language you can print any number pattern. Here i will show you … Continue Reading →
C program to Print star pattern . Star pattern: In C language you can print any star pattern ,here you need nested loop first loop for print star and inner loop is used for line break. Let’s write… Continue Reading →
A program to find Smallest number in Array in C. Array : An Array is a collection of data items, all of the same type, accessed using a common name. … Continue Reading →
Matrix: A matrix is a collection of numbers arranged into a fixed number of rows and columns.In mathematics and computer science, a matrix is a set of numbers laid out in tabular form (in rows and columns).