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,971 questions

51,913 answers

573 users

How to print prime numbers up to N in C

1 Answer

0 votes
#include <math.h>
#include <stdio.h>
#include <stdbool.h>
  
bool isPrime(int n) {
    if (n == 0 || n == 1) {
        return false;
    }
  
    for (int i = 2; i <= sqrt(n); i++) {
        if (n % i == 0) {
            return false;
        }
    }

    return true;
}
 
void printPrimesUpto(int n) {
    for (int i = 2; i < n; i++) {
         if (isPrime(i)) {
            printf("%d ", i);
         }
    }
}
 
int main(void) {
    printPrimesUpto(500);
}
 
 
 
 
/*
run:
 
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 181 191 193 197 199 211 223 227 229 233 239 241 251 257 263 269 271 277 281 283 293 307 311 313 317 331 337 347 
349 353 359 367 373 379 383 389 397 401 409 419 421 431 433 439 443 449 457 461 463 467 479 487 491 499 
 
*/

 



answered Oct 21, 2023 by avibootz
edited Jan 28, 2024 by avibootz

Related questions

1 answer 258 views
1 answer 93 views
93 views asked Oct 21, 2023 by avibootz
1 answer 167 views
1 answer 163 views
1 answer 177 views
...