This example shows how to count primes.
#include <stdint.h>
#include <iostream>
int main()
{
std::cout << "Primes below 1000 = " << count << std::endl;
return 0;
}
uint64_t count_primes(uint64_t start, uint64_t stop)
Count the primes within the interval [start, stop].