summaryrefslogtreecommitdiff
path: root/p7/main.c
blob: ef215edad8464ce4ba8913b06d2dabb6d0f49063 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#include "primes_1000000.h"

int main(int argc, char **argv)
{
    printf("%ld\n", prime_table[10000]);
    return 0;
}