NAME
examples/benchmarks/primes2.c - Calculate prime numbers < 10000
SYNOPSIS
% make examples/benchmarks/primes2 % time examples/benchmarks/primes2
DESCRIPTION
Calculates all the prime numbers up to 10000 and prints out the number of primes and the last one found.
Functions
int main(int argc, char *argv[])
Main function to run the example.
int isprime1(int input)
Determines if the input number is a prime.
SEE ALSO
examples/benchmarks/primes.c, examples/benchmarks/primes.pasm, examples/benchmarks/primes.pl, examples/benchmarks/primes2_p.pasm, examples/benchmarks/primes2.pir, examples/benchmarks/primes2.py.