Tutorial Playlist
Prime numbers are an interesting and fundamental concept in number theory. They're the building blocks of natural numbers, having a significant role in various fields like cryptography and internet security. In this article, we'll explore different ways to write a prime number program in C, providing detailed explanations and examples for each method.
If you want to download this tutorial in PDF format for further reading: Download Tutorial PDF
The prime number refers to any natural number that is greater than 1, with no positive divisors besides 1 or itself. For example, the first six prime numbers are 2, 3, 5, 7, 11, and 13.
Here are some of the more interesting facts about prime numbers to understand them better!
A basic way to find if a number is prime is to loop from 2 to n-1 and check if the number is divisible by any number in this range. If it is, then it's not a prime number; otherwise, it is.
Here's a simple prime number program in C using for loop:
#include <stdio.h> |
The time complexity for this program is O(n) because, in the worst-case scenario, we're iterating from 2 to n/2.
The space complexity for this program is O(1), as we're not using any additional space that scales with input size.
The naive approach to check for a prime number is by checking divisibility from 2 to n-1. If n is divisible by any number in this range, it's not prime.
Example:
#include<stdio.h> |
A more optimised approach is to check divisibility up to the square root of n. This is because a larger factor of the number must be multiple of a smaller factor that has already been checked.
#include<stdio.h> |
Wilson's theorem states that a number n is a prime number program in C only if (n - 1)! + 1 is a multiple of n.
Note: this method may not be efficient for large numbers as factorial values grow rapidly.
#include<stdio.h> |
The reason we only need to iterate the loop till n/2 in a prime checking program is because of the nature of factors. Any n factor greater than n/2 would need to be multiplied by a number less than 2 to produce n, and since all factors must be integers, the only possible factor in this scenario is n itself.
In C programming, the while loop is used to repeatedly execute a block of code as long as a given condition is true. We can use a while loop to check whether a number is prime.
Example:
#include<stdio.h> |
The check_prime function first handles the special cases of n being less than or equal to 1, equal to 2, or an even number (which can be determined without looping).
The while loop then starts with i equal to 3, and continues as long as i squared is less than or equal to n (since we only need to check divisors up to the square root of n). For each i, the function checks if n is divisible by i, and if so, it immediately returns 0 (indicating that n is not prime). After each iteration, i is incremented by 2 (since even divisors other than 2 can be ignored). If the while loop completes without finding any divisors, n is prime, so the function returns 1.
In the main function, the program asks the user to input a number n, then calls check_prime(n). If check_prime(n) returns 1 (indicating that n is prime), the program prints that n is a prime number. Otherwise, it prints that n is not a prime number.
We can also create a function to check for prime number program in C and then call that function whenever we need it:
#include<stdio.h> |
The C program to print prime numbers from 1 to n, i.e., within a range, follows a simple procedure: it loops through each number within the given range, checks if the number is prime and if the number is prime, it prints the number.
Example:
#include<stdio.h> |
Here's what the program does:
So, in this way, the program prints all prime numbers within the range [low, high].
Please note that the prime-checking algorithm used in this program has a time complexity of O(n), so it may run slowly for large input ranges. You can optimise it by checking divisibility up to the square root of n or using more efficient algorithms like the Sieve of Eratosthenes.
The Sieve of Eratosthenes algorithm efficiently finds all prime numbers up till a given limit. This algorithm is named after the ancient Greek mathematician Eratosthenes, who first described it.
The word "sieve" refers to a tool used to separate fine particles from coarse ones. In the context of this algorithm, it's a metaphorical sieve used to filter out composite numbers (non-primes), leaving behind only prime numbers.
The algorithm works by iteratively marking the multiples of each number starting from 2. The steps are as follows:
Here’s the C program for it:
#include<stdio.h> |
This program starts by taking an integer n as input from the user. Then it calls the sieve function, which populates an array of primes with all prime numbers up to n. In the end, it prints the prime numbers.
We delved into an array of methods to identify and program for prime number in C in this comprehensive tutorial. We examined diverse techniques, each with their respective time complexities and code implementations. While each method has its use cases, it's critical to choose the most efficient approach that meets your specific requirements.
Programming is a domain where there is always more to learn and master. As we've seen in this tutorial, even a seemingly simple problem like prime number identification can have multiple solutions, each with its own trade-offs.
If you are excited about mastering the art of programming and want to dig deeper into languages like C, Python, Java, and many more, you might want to consider upGrad's Full Stack Software Development Bootcamp, designed to equip you with the skills needed to excel in the technology industry.
Remember, the journey of mastering programming is a marathon, not a sprint, and every line of code you write gets you one step closer to your goal. Happy Coding!
1. What is the time complexity of the Sieve of Eratosthenes?
The time complexity of the Sieve of Eratosthenes is O(n log log n), making it an efficient method to find all primes inferior to n when n is smaller than 10 million or so.
2. Why do we check up to the square root of a number to determine if it's prime?
We check up to the square root of a number because a larger factor of the number would be multiple of a smaller factor that has already been checked.
3. Can the number 1 be considered a prime number?
No, 1 is not considered a prime number. By definition, a prime number has exactly two distinct positive divisors: 1 and itself. Since 1 only has one divisor (1), it does not meet the criteria.
PAVAN VADAPALLI
Popular
Talk to our experts. We’re available 24/7.
Indian Nationals
1800 210 2020
Foreign Nationals
+918045604032
upGrad does not grant credit; credits are granted, accepted or transferred at the sole discretion of the relevant educational institution offering the diploma or degree. We advise you to enquire further regarding the suitability of this program for your academic, professional requirements and job prospects before enrolling. upGrad does not make any representations regarding the recognition or equivalence of the credits or credentials awarded, unless otherwise expressly stated. Success depends on individual qualifications, experience, and efforts in seeking employment.
upGrad does not grant credit; credits are granted, accepted or transferred at the sole discretion of the relevant educational institution offering the diploma or degree. We advise you to enquire further regarding the suitability of this program for your academic, professional requirements and job prospects before enr...