Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to calculate the first N (random up to 100) prime numbers in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
 
int main(void)
{
	int i, n, prime = 3, numbers;
 
	srand(time(NULL));
	n = rand() % 100 + 1;
 
	if ( n >= 1 )
	{
      printf("First %d prime numbers are :\n", n);
      printf("2\n");
	}
 
   for (numbers = 2 ; numbers <= n ; )
   {
      for (i = 2 ; i <= prime - 1 ; i++)
      {
         if (prime % i == 0)
            break;
      }
      if (i == prime)
      {
         printf("%d\n", prime);
         numbers++;
      }
      prime++;
   }

   return 0;
}

 
/*
   
run:
   
First 41 prime numbers are :
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97
101
103
107
109
113
127
131
137
139
149
151
157
163
167
173
179

*/

 



answered Jan 21, 2016 by avibootz
edited Jan 21, 2016 by avibootz

Related questions

...