/********************************************************** File: main.cc Description: A program that finds all of the prime numbers below a certain limit. The parallel functions. Author: Dana Vrajitoru Organization: IUSB Date: September 30, 2004 ***********************************************************/ #include using namespace std; #include void eratosthenes(bool prime[], int limit); int main() { const int limit=100; bool prime[limit]; eratosthenes(prime, limit); for (int i=0; i