Follow us:
Quadratic Equation program in C
In this article, you will learn to find the roots of a quadratic equation in C Language. The standard form of a quadratic equation is: ax2 + bx + c = 0, where a, b and c are real numbers…
Follow us:
In this article, you will learn to find the roots of a quadratic equation in C Language. The standard form of a quadratic equation is: ax2 + bx + c = 0, where a, b and c are real numbers…
This article guide you for “how to write a Prime Number Program in C++”. Prime number is a number that is greater than 1 and divided by 1 or itself. In other words, prime numbers can’t be divided by other…
This article guide you for making a Palindrome Number Program in C++. A Palindrome number is a number that is same after reverse. For example 121, 34543, 343, 131, 48984 are the palindrome numbers. Palindrome number algorithm Factorial program in…
This article guide you for writing a Program in C++ which finds the factorial of given number. Before going to write the C++ program to find the factorial of any number, let’s understand what is Factorial of any number. Factorial…
This article guide you for writing a Program in C++ which check whether the number is Armstrong number or not . Before going to write the C++ program to check whether the number is Armstrong number or not, let’s understand…
This article shows that Reverse Number Program in C++. We can reverse a number in C++ using loop and arithmetic operators. In this program, we are getting number as input from the user and reversing that number. C++ Program to…
This article guide you for writing a Program in C++ which swap the two numbers. Here, We had discussed two methods to swap the two numbers in C++ : Matrix Multiplication Program in C++. Using Third Variable Let’s see a…
This article guide you for writing a Matrix multiplication Program in C++. We can add, subtract, multiply and divide 2 matrices. To do so, we are taking input from the user for row number, column number, first matrix elements and…
This article guide you for writing a C++ Program which converts Decimal Number to Binary Number. We can convert any decimal number (base-10 (0 to 9)) into binary number (base-2 (0 or 1)) by C++ program. Decimal Number Decimal number…
This article shows that Python Program to do arithmetical calculation. The arithmetic calculations are performed by calculator where we can perform addition, subtraction, multiplication and division. In this article you see a basic example to do basic arithmetic operations in…
This article shows that python program to find a area of triangle. Mathematical formula to find the area of triangle: Area of a triangle = (s*(s-x)*(s-y)*(s-z))1/2 Here s is the semi-perimeter and x, y and z are three sides of…
This article shows that C++ Program to Print Alphabet Triangle. There are different-different type of triangles that can be printed. Triangles can be generated by alphabets or numbers or lines or special characters. In this C++ program, we are going…