C Program – Find GCD of two numbers
C Program to find the GCD of two numbers. GCD of two numbers : GCD.c #include<stdio.h> int gcdCalc(int a,int b);
C Program to find the GCD of two numbers. GCD of two numbers : GCD.c #include<stdio.h> int gcdCalc(int a,int b);
C Program to print the prime numbers between two numbers. Prime numbers between two numbers : PrimeNumbers.c #include<stdio.h> #include<math.h> void
C ProgramĀ to print Armstrong numbers between the given two numbers. Armstrong numbers : ArmstrongNumbers.c #include<stdio.h> int main(void) { int
C program to reverse of a number. Reverse of a number : Reverse.c #include<stdio.h> int reverse(int n); int main(void) {
C Program to print the sum of digits of a given number. Sum of Digits : SumOfDigits.c #include<stdio.h> int main(void)
C Program to check a given number is palindrome or not. Number is Palindrome or not ? Palindrome.c #include<stdio.h> long
C Program to find given number is Even or Odd. Even or Odd : EvenOrOdd.c #include<stdio.h> int main(void) { int
C Program to find the factorial of given number. Factorial Of Given Number : Factorial.c #include<stdio.h> int main(void) { int
C Program to find a given number is prime or not. is Prime or not ? PrimeOtNot.c #include<stdio.h> #include<math.h> int
C- Program to generate Fibonacci Series. Fibonacci Series : Fibonacci.c #include<stdio.h> int main(void) { long a,b,c; int i,n; a=0; b=1;
Any expression which returns either true or false that expression is known as condition. Python Conditional Statements : The Python
The Python if statement is also similar to other languages like java, php simple if statements and etc., Python if
Operators are used to manipulate the values of operands. This tutorial lets you understand the python operators. Python Operators :
In this tutorials, I am going to show you how to read input from the keyboard in python. Python raw_input
We have discussed in the previous tutorials, how to handle different types of number systems in python language. In this
According to the mathematics we have four types of number systems which are representing the numbers in computer architecture. In
In this tutorial, we will see the different ways to develop a python program/application are Modes of Python Program :
In this tutorial, we are going to learn about the features of Python Language. Features of Python Language : Python
Python is a powerful and general purpose programming language developed by the Guido van Rossum, and its implementation began in
Here I am going to show how to configure multiple data sources in spring boot. Spring Boot multiple data sources