C program to check whether the triangle is right angled triangle

right+angle+triangle+in+c

 c program to check whether the triangle is right angled triangleTo check right angle triangle or not first we need to check sum of all three angles If sum... read more ?

Write a c program to check a number is palindrome or not:

check+palindrome+number+in+c

If reverse number of a number is same then we can say its a palindrome numberwe already know logic to reverse a number using remainder logicread input from... read more ?

C program to print pyramid pattern of numbers

pattern+program+in+c+language

 #1: C program to print pyramid pattern of n stars#include <stdio.h>//c program to print pyramid pattern of numbers// www.instanceofjava.comint main(){   int number,k,m;    printf("Number of lines of star... read more ?

prime number program in javascript

javascript+prime+number

JavaScript prime number programIn this example will learn about how to find the number is prime or not.WHATS IS PRIME NUMBERA number greater than 1 with exactly two... read more ?

Python range function recursive

python+range+float

Recursion: The process of calling a function by itself is called recursion and the function which calls itself is called recursive function. Recursion is used to solve various... read more ?

Else statement in python with example program

if+else+statement+in+python

Else Statement in Python: The if statement alone tells us that if a condition is true it will execute a block of statements and if the condition is... read more ?

Fibonacci series in c without recursion

fibonacci+series+in+c

In Fibonacci series the first two numbers in the Fibonacci sequence are 0 and 1 and each subsequent number is the sum of the previous two. For example... read more ?

Select Menu