Thursday 15 November 2012

C program to find whether a given number is an Armstrong number or not


C program to find whether a given number is an Armstrong number or not

#include<stdio.h>
#include<conio.h>
#include<math.h>

Wednesday 14 November 2012

C program to reverse any number

C program to reverse any number

#include<stdio.h>
#include<conio.h>

Wednesday 26 September 2012

C Program to multiply two matrices

C Program to multiply two matrices

#include<stdio.h>
#include<conio.h>

Thursday 23 August 2012

C program to find the sum of the series x+x^2/2+x^3/3+.....+x^n/n

C program to find the sum of the series x+x^2/2+x^3/3+.....+x^n/n

#include<stdio.h>
#include<conio.h>
#include<math.h>