Pages

Sunday, January 30, 2011

Free CRICKET WORLD CUP 2011 Fixture download

download the file from any of the following links. exclusive fixture made on Microsoft Excel. 


or


or

Wednesday, January 26, 2011

Saturday, January 8, 2011

Sieve Algorithm Implimentation

Sieve is a popular algorithm. It is used to detect the prime numbers between two numbers.  

Code:
#include<stdio.h>
#include<math.h>
#define max 10000000
char p[max];
void sieve()
{
long i,j,c=0,x=0;
for(i=2;i<max;i++) p[i]=1;
for(i=2;i<=sqrt(max); )
{

for(j=i+i;j<=max;j+=i)
p[j]=0;
i++;
for( ;!p[i];i++);
}
for(i=0;i<=max;i++)if(p[i])x++; /*This 2 lines for checking the number of primes between 0 & 10000000.*/
printf("%d",x);

}
int main()
{
sieve();
return 0;
}

Wednesday, January 5, 2011

Bloodshed Dev C++ compiler

Bloodshed Dev C++ compiler download.

Adobe Photoshop CS4 Extended Edition

Adobe Photoshop CS4 Extended Edition with serial key and crack.

Matrix Multiplication

Download the following file if you have problem regarding Matrix Multiplication or Matrix Chain Multiplication or to find the optimal parenthesize of MCM.


or,

Sunday, January 2, 2011

Find Info's of Any People

There are few websites where you can find at least some information regarding any one. Here are some links.