Pages

program to generate Fibonacci series using Recursive function in C

This program can generate Fibonacci series of any number: Source Code: #include <stdio.h> #include <conio.h> int fibo(in...

0 Comments

Program to check Armstrong number in C

The number whose sum of the cube of each digit is equal to the number is called Armstrong number. This program show you how to calculate an...

0 Comments

Program to find ASCII value and its type of any character.

This program shows get any character and prints it's ASCII value and its type like integer, character, capital letter, special symbol. ...

0 Comments

Program to find sum, average and reverse of any digit

This program illustrate how to get sum and average of any digit. #include <stdio.h> #include <conio.h> void main() {   ...

0 Comments

Sorting array in ascending order in C

The following program shows how to sort a linear array in ascending order of any size. You can sort the same array in descending order from...

0 Comments

Program to find Leap year

We can determine the leap year by applying the condition whether the given year is divisible by 4 and not divisible by 100 or given year is...

0 Comments

Testing Palindrome in C

Palindrome is a word, phrase, number or other sequence which has same form before and after reversing it for example mom, 5775 etc. Here if...

0 Comments

Program to count number of lines and words in a file in Java

This simple count the number of lines and words in a file. In this program we use FileReader and BufferedReader class defined in java.io ...

0 Comments

JVM, JRE and JDK in Java

We often hear the terms JVM, JRE and JDK while start to program in Java. These three terms are essential for develop java application. The...

0 Comments